This commit is contained in:
ge
2022-11-10 22:09:14 +03:00
commit 7c7e8069e2
6 changed files with 544 additions and 0 deletions

15
PKGBUILD Normal file
View File

@ -0,0 +1,15 @@
pkgname=btw
pkgver=1.0
pkgrel=1
pkgdesc=''
arch=(any)
url=https://git.nxhs.cloud/ge/btw
license=(Unlicense)
depends=(coreutils acpi libnotify)
provides=(btw)
conflicts=()
srcdir="$PWD"
package() {
install -Dm755 $srcdir/btw $pkgdir/usr/bin/btw
install -Dm644 $srcdir/btw.1 $pkgdir/usr/share/man/man1/btw.1
}