core/xbindkeys/PKGBUILD

26 lines
586 B
Bash
Raw Normal View History

2014-04-23 02:44:48 +08:00
# maintainer almack[at]chakraos[dot]org
pkgname=xbindkeys
2014-04-23 02:44:48 +08:00
pkgver=1.8.6
pkgrel=1
pkgdesc="Launch shell commands with keyboard or mouse under X"
arch=('x86_64')
url="http://www.nongnu.org/xbindkeys/xbindkeys.html"
license=('GPL')
depends=('libx11' 'guile')
optdepends=('tk: xbindkeys_show')
source=("http://www.nongnu.org/${pkgname}/${pkgname}-${pkgver}.tar.gz")
2014-04-23 02:44:48 +08:00
md5sums=('c6ea9db56e075dae0697497e2ed390cc')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}