diff options
Diffstat (limited to 'btnx-config')
-rw-r--r-- | btnx-config/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/btnx-config/PKGBUILD b/btnx-config/PKGBUILD new file mode 100644 index 0000000..d39dd2b --- /dev/null +++ b/btnx-config/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Florian Pritz <f-p@gmx.at> +# Contributor: Graziano Giuliani <graziano.giuliani@poste.it> + +pkgname=btnx-config +pkgver=0.4.9 +pkgrel=1 +pkgdesc="Button Extension- a GNU/GPL mouse tool for GNU/Linux" +arch=(i686 x86_64) +url="http://www.ollisalonen.com/btnx/" +license=('GPL') +groups=(gnome-extra) +depends=(libglade) +makedepends=(pkgconfig gnome-doc-utils) +options=('!libtool' '!emptydirs') +source=(http://www.ollisalonen.com/btnx/${pkgname}-${pkgver}.tar.gz) +noextract=() +md5sums=('b07314c2562a81c7c82cc1561ca387d1') + +build() { + cd $startdir/src/${pkgname}-${pkgver} + + init_scripts_path=/etc/rc.d \ + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var + make || return 1 + make DESTDIR=${pkgdir} DATAROOTDIR=${pkgdir} install +} + +# vim:set ts=2 sw=2 et: + |