PKGBUILDs/core/libnl/PKGBUILD

21 lines
550 B
Bash
Raw Normal View History

# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=libnl
pkgver=1.1
pkgrel=1
pkgdesc="Library for applications dealing with netlink sockets"
arch=('arm')
url="http://people.suug.ch/~tgr/libnl"
license=('GPL')
depends=('glibc')
source=(http://downloads.openwrt.org/sources/libnl-1.1.tar.gz)
md5sums=('ae970ccd9144e132b68664f98e7ceeb1')
build() {
cd ${startdir}/src/libnl-${pkgver}
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=${startdir}/pkg install || return 1
}