blob: e8352982a6105f4a6756e55df61c8383346fa815 (
plain)
1 # Description: Public client interface library for NIS(YP) and NIS+ from glibc
2 # URL: https://github.com/thkukuk/libnsl
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4
5 name=libnsl
6 version=2.0.0
7 release=1
8 source=(https://github.com/thkukuk/$name/releases/download/v$version/$name-$version.tar.xz)
9
10 build() {
11 cd $name-$version
12 autoreconf -fi
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|