blob: 0f3327849cd7ef0c7caeddb6f9575449cf22b986 (
plain)
1 # Description: Allows you to launch shell commands with your keyboard or your mouse under xorg.
2 # URL: https://www.nongnu.org/xbindkeys/xbindkeys.html
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: xorg-libx11
5
6 name=xbindkeys
7 version=1.8.7
8 release=1
9 source=(http://www.nongnu.org/xbindkeys/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure \
14 --prefix=/usr \
15 --disable-guile
16 make
17 make DESTDIR=$PKG install
18 }
|