17 lines
503 B
Bash
17 lines
503 B
Bash
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
|
|
}
|