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

3
src/keybinder3/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

View File

@ -0,0 +1,2 @@
# 3.0-0.3.2
First version

21
src/keybinder3/pkg.sh Normal file
View File

@ -0,0 +1,21 @@
NAME="keybinder3"
DESC="Utility library registering global X keyboard shortcuts for GTK3"
# what the actual fuck is this version numbering ffs how the fuck am i supposed to
# put this shit into the url holy fucking shit i swear to the fucking god some random
# as developer was like "yea lets fuck the downstream lmao"
VERSION="3.0-0.3.2"
FILES=("https://github.com/kupferlauncher/keybinder/releases/download/keybinder-3.0-v0.3.2/keybinder-$VERSION.tar.gz")
HASHES=("97260321fda721fce799174ea6ba10cf")
DEPENDS=("gtk3" "gobject-introspection")
PACKAGE() {
tar xf keybinder-$VERSION.tar.gz
cd keybinder-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r keybinder-$VERSION
}