opt/rpcbind/Pkgfile
Juergen Daubert 3a4a6d5cb3 Merge branch '3.1' into 3.2
Conflicts:
	firefox/.footprint
	firefox/Pkgfile
2015-11-04 12:34:21 +01:00

29 lines
783 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
name=rpcbind
version=0.2.3
release=2
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2 \
$name-$version.patch rpcbind)
build() {
cd $name-$version
patch -p1 -i $SRC/$name-$version.patch
./configure --prefix=/usr \
--bindir=/sbin \
--mandir=/usr/man \
--disable-libwrap \
--with-rpcuser=root \
--without-systemdsystemunitdir
make
make DESTDIR=$PKG install
install -D -m 755 $SRC/rpcbind $PKG/etc/rc.d/rpcbind
}