diff options
Diffstat (limited to 'repo/libnsl/libnsl.xibuild')
-rw-r--r-- | repo/libnsl/libnsl.xibuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/libnsl/libnsl.xibuild b/repo/libnsl/libnsl.xibuild new file mode 100644 index 0000000..555edd9 --- /dev/null +++ b/repo/libnsl/libnsl.xibuild @@ -0,0 +1,24 @@ +#!/bin/sh + +MAKEDEPS="make autoconf automake gettext libtirpc libtool" +DEPS="intltool libtirpc musl" + +PKG_VER=1.2.0 +SOURCE=https://github.com/thkukuk/libnsl/archive/v$PKG_VER.tar.gz + +DESC="Public client interface for NIS(YP) and NIS+ in a IPv6 ready version" + +prepare () { + autoreconf -vfi +} + +build () { + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --disable-static && + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |