diff options
Diffstat (limited to 'abs/core/libirman')
-rw-r--r-- | abs/core/libirman/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/core/libirman/PKGBUILD b/abs/core/libirman/PKGBUILD new file mode 100644 index 0000000..3305a78 --- /dev/null +++ b/abs/core/libirman/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=libirman +pkgver=0.4.5 +pkgrel=2 +pkgdesc="Irman driver lcd library" +arch=('i686' 'x86_64') +url="http://www.lirc.org" +license=('LGPL') +options=(!libtool) +backup=('etc/irman.conf') +depends=('glibc') +source=(http://downloads.sourceforge.net/lirc/${pkgname}-${pkgver}.tar.bz2) +md5sums=('4a2708d53b6c79659c073cfefed57f78') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static + make + make DESTDIR="${pkgdir}" install +} |