diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-04-25 04:04:23 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-04-25 04:04:23 +0000 |
commit | 2e237e087ac1a2449690b7dfdfed1e406838feaf (patch) | |
tree | f962d302a15b954fe81d8c6b15a25158ad58efa3 /community/libnih | |
parent | 431023a318e680258f02c1fb5fdca176c68e5cb7 (diff) |
Fri Apr 25 04:00:40 UTC 2014
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 +} |