diff options
author | root <root@rshg054.dnsready.net> | 2012-06-27 00:01:57 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-06-27 00:01:57 +0000 |
commit | c77c7fc60c48c9aaa8f915eb112405e8879e46aa (patch) | |
tree | 46509cb375dc9d89676ab0d115c35629fc7326ae /testing/libnl | |
parent | 9a6b691757346035549dbd12d1323301d04a6675 (diff) |
Wed Jun 27 00:01:57 UTC 2012
Diffstat (limited to 'testing/libnl')
-rw-r--r-- | testing/libnl/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/libnl/PKGBUILD b/testing/libnl/PKGBUILD new file mode 100644 index 000000000..67f071a46 --- /dev/null +++ b/testing/libnl/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 162351 2012-06-25 18:39:40Z thomas $ +# Maintainer: Thomas Bächler <thomas@archlinux.org> + +pkgname=libnl +pkgver=3.2.11 +pkgrel=1 +pkgdesc="Library for applications dealing with netlink sockets" +arch=(i686 x86_64) +url="http://www.infradead.org/~tgr/libnl/" +license=(GPL) +depends=(glibc) +backup=(etc/libnl/classid etc/libnl/pktloc) +options=(!libtool) +source=("$url/files/$pkgname-$pkgver.tar.gz") +sha256sums=('9750409c0fec8b27966a65d94c040647ee01753e0947b0d59577b815ee0e710d') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --sbindir=/usr/bin \ + --disable-static + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |