diff options
Diffstat (limited to 'core/libnl/PKGBUILD')
-rw-r--r-- | core/libnl/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/core/libnl/PKGBUILD b/core/libnl/PKGBUILD new file mode 100644 index 000000000..2c835283b --- /dev/null +++ b/core/libnl/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 77938 2010-04-19 05:37:53Z allan $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=libnl +pkgver=1.1 +pkgrel=2 +pkgdesc="Library for applications dealing with netlink sockets" +arch=('i686' 'x86_64') +url="http://www.infradead.org/~tgr/libnl/" +license=('GPL') +depends=('glibc') +source=(ftp://ftp.archlinux.org/other/libnl/${pkgname}-${pkgver}.tar.gz + fix-compilation.patch) +md5sums=('ae970ccd9144e132b68664f98e7ceeb1' + 'e1f5e82c8aa1b3ad025c7b588178de1e') + +build() { + cd ${srcdir}/libnl-${pkgver} + patch -Np1 -i ${srcdir}/fix-compilation.patch || return 1 + ./configure --prefix=/usr || return 1 + make || return 1 +} + +package() { + cd ${srcdir}/libnl-${pkgver} + make DESTDIR=${pkgdir} install || return 1 +} |