first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

16
src/keybinder2/pkg.sh Normal file
View File

@@ -0,0 +1,16 @@
NAME="keybinder2"
DESC="Utility library registering global X keyboard shortcuts"
VERSION="0.3.1"
FILES=("https://github.com/kupferlauncher/keybinder/releases/download/v$VERSION/keybinder-$VERSION.tar.gz")
HASHES=("a6d7caae0dcb040b08692b008a68a507")
DEPENDS=("gtk2" "gobject-introspection")
PACKAGE() {
tar xf keybinder-$VERSION.tar.gz
cd keybinder-$VERSION
./configure --prefix=/usr --disable-lua --disable-python
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r keybinder-$VERSION
}