19 lines
441 B
Plaintext
19 lines
441 B
Plaintext
|
# Maintainer: Jay Dolan, jasonthomasdolan at yahoo dot com
|
||
|
# Description: NIS Yellow Pages utilities
|
||
|
# URL: http://www.linux-nis.org/nis/yp-tools
|
||
|
# Depends on:
|
||
|
|
||
|
name=yp-tools
|
||
|
version=2.9
|
||
|
release=1
|
||
|
source=(ftp://ftp.kernel.org/pub/linux/utils/net/NIS/$name-$version.tar.gz)
|
||
|
|
||
|
build(){
|
||
|
cd $name-$version
|
||
|
./configure --mandir=/usr/man --disable-nls
|
||
|
make && make DESTDIR=$PKG install
|
||
|
|
||
|
rm -rf $PKG/bin
|
||
|
rm -f $PKG/usr/man/man8/*domainname*
|
||
|
}
|