blob: 051272ba121f20be3b658266a012226148dc3753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
MAKEDEPS="make autoconf automake gettext libtirpc libtool"
DEPS="libintl 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
}
|