summaryrefslogtreecommitdiff
path: root/extra/libnl1/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/libnl1/PKGBUILD')
-rw-r--r--extra/libnl1/PKGBUILD18
1 files changed, 8 insertions, 10 deletions
diff --git a/extra/libnl1/PKGBUILD b/extra/libnl1/PKGBUILD
index 6d35c216d..6130b5cde 100644
--- a/extra/libnl1/PKGBUILD
+++ b/extra/libnl1/PKGBUILD
@@ -1,28 +1,26 @@
-# $Id: PKGBUILD 150908 2012-02-23 13:56:22Z heftig $
+# $Id: PKGBUILD 182913 2013-04-16 05:29:35Z eric $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=libnl1
-pkgver=1.1
+pkgver=1.1.3
pkgrel=1
pkgdesc="Library for applications dealing with netlink sockets (Legacy version)"
arch=('i686' 'x86_64')
url="http://www.infradead.org/~tgr/libnl/"
license=('GPL')
depends=('glibc')
-source=("http://www.infradead.org/~tgr/libnl/files/libnl-${pkgver}.tar.gz"
- 'fix-compilation.patch')
-md5sums=('ae970ccd9144e132b68664f98e7ceeb1'
- 'e1f5e82c8aa1b3ad025c7b588178de1e')
+options=('!staticlibs')
+source=("http://www.infradead.org/~tgr/libnl/files/libnl-${pkgver}.tar.gz")
+md5sums=('4e4fa2197f4412b20c2952325d674b12')
build() {
- cd ${srcdir}/libnl-${pkgver}
- patch -Np1 -i ${srcdir}/fix-compilation.patch
+ cd libnl-${pkgver}
./configure --prefix=/usr
make
}
package() {
- cd ${srcdir}/libnl-${pkgver}
- make DESTDIR=${pkgdir} install
+ cd libnl-${pkgver}
+ make DESTDIR="${pkgdir}" install
}