eth0s/ports/libnl/Pkgfile
2019-10-03 18:00:34 +08:00

18 lines
437 B
Text
Executable file

# Description: Collection of libraries providing APIs to netlink protocol based Linux kernel interfaces
# URL:
# Maintainer:
name=libnl
version=3.5.0
release=1
source=(https://github.com/thom311/libnl/releases/download/libnl${version//./_}/libnl-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-static
make
make DESTDIR=$PKG install
}