diff --git a/PKGBUILDS/stratos-calamares-config/PKGBUILD b/PKGBUILDS/stratos-calamares-config/PKGBUILD new file mode 100644 index 0000000..d4fc000 --- /dev/null +++ b/PKGBUILDS/stratos-calamares-config/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: ZeStig +pkgname=stratos-calamares-config +pkgver=1.0 +pkgrel=0 +pkgdesc="StratOS Calamares config" +arch=('x86_64') +url="https://github.com/StratOS-Linux/StratOS-calamares-config" +license=('GPL') +depends=('bash') + +build() { + git clone $url + echo $srcdir +} + +package() { + mkdir -p "$pkgdir/etc/calamares" + cp -r "$srcdir"/* "$pkgdir"/etc/calamares/ +} + +pkgpostrm(){ + rm -rf "/etc/calamares/" +}