20 lines
475 B
Plaintext
20 lines
475 B
Plaintext
# Maintainer: Jay Dolan, jasonthomasdolan at yahoo dot com
|
|
# Description: NIS binding daemon
|
|
# URL: http://www.linux-nis.org/nis/ypbind-mt
|
|
# Depends on:
|
|
|
|
name=ypbind-mt
|
|
version=1.19
|
|
release=1
|
|
source=(ftp://ftp.kernel.org/pub/linux/utils/net/NIS/$name-$version.tar.bz2 yp.conf ypbind)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --disable-nls
|
|
make && make DESTDIR=$PKG install
|
|
|
|
install -d $PKG/etc/rc.d
|
|
install -m 644 ../yp.conf $PKG/etc
|
|
install ../ypbind $PKG/etc/rc.d
|
|
}
|