aboutsummaryrefslogtreecommitdiffstats
path: root/main/libnl3/APKBUILD
blob: d716117866d4d81cd7d452136f289e63ed048f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libnl3
pkgver=3.2.11
pkgrel=0
pkgdesc="Library for applications dealing with netlink sockets"
url="http://people.suug.ch/~tgr/libnl"
arch="all"
license="GPL"
depends=
makedepends="flex bison"
subpackages="$pkgname-dev"
source="http://distfiles.gentoo.org/distfiles/libnl-$pkgver.tar.gz"

_builddir="$srcdir"/libnl-$pkgver

prepare () { 
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -s -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build () { 
	cd "$_builddir"
	./configure --prefix=/usr || return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	find "$pkgdir"/usr/lib -name '*.la' -delete
}

md5sums="7a35f3a17b52f41ee120dceb99b2ef72  libnl-3.2.11.tar.gz"