Initial commit - PKGBUILD may not work yet

This commit is contained in:
askiiart 2024-09-26 12:19:49 -05:00
commit b88e4a1ae1
Signed by untrusted user who does not match committer: askiiart
GPG key ID: EA85979611654C30
5 changed files with 712 additions and 0 deletions

21
PKGBUILD Executable file
View file

@ -0,0 +1,21 @@
pkgname=mnt-and-sway
pkgver=0.0.1
pkgrel=1
pkgdesc="A script to mount a user's encrypted home partition and start sway"
arch=(any)
url='https://git.askiiart.net/askiiart/mnt-and-sway'
license=('GPL-3.0-only')
depends=(cryptsetup make)
source=('https://git.askiiart.net/askiiart/mnt-and-sway/releases/download/v$pkgver/$pkgver.tar.gz'
package() {
ls $pkgdir
cd $pkgdir
make install PREFIX="$pkgdir"
}
post_install() {
echo "Place the UUID of your home directory's encrypted partition at ~/fs-uuid on the root partition"
}