23 lines
691 B
Plaintext
23 lines
691 B
Plaintext
# Description: Server that converts RPC program numbers into universal addresses
|
|
# URL: http://sourceforge.net/projects/rpcbind/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: libtirpc tcp_wrappers
|
|
|
|
name=rpcbind
|
|
version=0.2.0
|
|
release=2
|
|
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2 \
|
|
rpcbind)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--bindir=/sbin \
|
|
--mandir=/usr/man \
|
|
--enable-libwrap
|
|
make
|
|
make DESTDIR=$PKG install
|
|
install -m 644 man/rpcinfo.8 $PKG/usr/man/man8
|
|
install -D -m 755 $SRC/rpcbind $PKG/etc/rc.d/rpcbind
|
|
}
|