eth0s/ports/core/libnl/Pkgfile
2019-11-10 23:58:56 +08:00

18 lines
485 B
Text
Executable file

# Description: Collection of libraries providing APIs to netlink protocol based Linux kernel interfaces
# URL:
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
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
}