diff options
Diffstat (limited to 'community/libg15/PKGBUILD')
-rw-r--r-- | community/libg15/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/libg15/PKGBUILD b/community/libg15/PKGBUILD new file mode 100644 index 000000000..082bbc1f1 --- /dev/null +++ b/community/libg15/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 101647 2013-11-29 19:08:51Z arcanis $ +# Maintainer: Evgeniy Alekseev <arcanis.arch at gmail dot com> +# Contributor: onestep_ua <onestep at ukr dot net> + +pkgname=libg15 +pkgver=1.2.7 +pkgrel=1 +pkgdesc="Provides low-level access to the Logitech G15 and G11 keyboards and Z10 speakers" +arch=('i686' 'x86_64') +url="http://www.g15tools.com/" +license=('GPL') +depends=('libusb-compat') +options=(!libtool) +source=(http://downloads.sourceforge.net/g15tools/${pkgname}-${pkgver}.tar.bz2) +md5sums=('718c8e1d0d0d4657f95427593d90a27a') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |