blob: fbc29bf3619d9ed7b173d27681fe67a554586b73 (
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="intltool libtirpc musl"
PKG_VER=2.0.0
SOURCE=https://github.com/thkukuk/libnsl/releases/download/v$PKG_VER/libnsl-$PKG_VER.tar.xz
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
}
|