opt/libnl/Pkgfile

22 lines
485 B
Plaintext
Raw Normal View History

2012-01-23 18:46:55 +01:00
# Description: Library providing APIs to netlink protocol based Linux kernel interfaces
2022-04-15 12:45:59 +02:00
# URL: http://www.infradead.org/~tgr/libnl/
# Maintainer: Juergen Daubert, jue at crux dot nu
2012-01-23 18:46:55 +01:00
name=libnl
2022-04-15 12:45:59 +02:00
version=3.6.0
2016-12-31 17:09:04 +01:00
release=1
source=(https://github.com/thom311/libnl/releases/download/libnl${version//./_}/$name-$version.tar.gz)
2012-01-23 18:46:55 +01:00
2012-12-04 17:12:16 +01:00
build() {
2022-04-15 12:45:59 +02:00
cd $name-$version
2012-01-23 18:46:55 +01:00
2022-04-15 12:45:59 +02:00
YACC="bison -y -Wnone" \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--disable-cli
2012-12-04 17:12:16 +01:00
2022-04-15 12:45:59 +02:00
make
make DESTDIR=$PKG install
2012-01-23 18:46:55 +01:00
}