diff options
Diffstat (limited to 'community/libnih')
-rw-r--r-- | community/libnih/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/libnih/PKGBUILD b/community/libnih/PKGBUILD new file mode 100644 index 000000000..08e62ced7 --- /dev/null +++ b/community/libnih/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 110121 2014-04-24 14:04:05Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Old Maintainer: Andrea Fagiani <andfagiani {at} gmail {dot} com> +# Contributor: Brett Mravec <brett.mravec@gmail.com> + +pkgname=libnih +pkgver=1.0.3 +pkgrel=1 +pkgdesc="Small library for C application development." +arch=(i686 x86_64) +url="https://launchpad.net/libnih" +license=('GPL') +depends=('dbus-core') +makedepends=('expat') +options=(!libtool) +source=(http://launchpad.net/libnih/1.0/${pkgver}/+download/$pkgname-$pkgver.tar.gz) +md5sums=('db7990ce55e01daffe19006524a1ccb0') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir/ install +} |