19 lines
455 B
Plaintext
19 lines
455 B
Plaintext
|
# Description: Allows you to launch shell commands with your keyboard or your mouse under xorg.
|
||
|
# URL: https://www.nongnu.org/xbindkeys/xbindkeys.html
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: xorg-libx11
|
||
|
|
||
|
name=xbindkeys
|
||
|
version=1.8.6
|
||
|
release=1
|
||
|
source=(http://www.nongnu.org/xbindkeys/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-guile
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|