blob: 956d7e0b2fc7cf8011f4b2e2cda54796eb56feec (
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
38
39
40
41
42
43
44
45
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libnl3
pkgver=3.2.25
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"
source="http://www.carisma.slowglass.com/~tgr/libnl/files/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 \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--disable-static \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
find "$pkgdir"/usr/lib -name '*.la' -delete
}
md5sums="03f74d0cd5037cadc8cdfa313bbd195c libnl-3.2.25.tar.gz"
sha256sums="8beb7590674957b931de6b7f81c530b85dc7c1ad8fbda015398bc1e8d1ce8ec5 libnl-3.2.25.tar.gz"
sha512sums="3f9649577e9282cf41d2d4894aaecb2d53b4a1c51f9e674a6fb73393e9482f9f45e6f0ffa5815e606f972916e369774bfd85141a96c0e3d9d4ead3adea796286 libnl-3.2.25.tar.gz"
|