diff options
author | Juergen Daubert <jue@jue.li> | 2021-05-11 13:37:06 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-05-11 13:37:06 +0200 |
commit | 4df6e3e5f7d13a1cb1276e3a786ef8ed3bfb5920 (patch) | |
tree | c0b7dbdea55c81cf05fd859dedc6c26e882fc8f5 /rpcbind/Pkgfile | |
parent | fff327a94c0576a7e2930663ae3706bc26e27712 (diff) | |
download | opt-4df6e3e5f7d13a1cb1276e3a786ef8ed3bfb5920.tar.gz opt-4df6e3e5f7d13a1cb1276e3a786ef8ed3bfb5920.tar.xz |
rpcbind: update to 1.2.6
Diffstat (limited to 'rpcbind/Pkgfile')
-rw-r--r-- | rpcbind/Pkgfile | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/rpcbind/Pkgfile b/rpcbind/Pkgfile index 8b3fd3e14..a5df0bbd8 100644 --- a/rpcbind/Pkgfile +++ b/rpcbind/Pkgfile @@ -1,27 +1,28 @@ # Description: Server that converts RPC program numbers into universal addresses -# URL: https://sourceforge.net/projects/rpcbind/ -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: libtirpc +# URL: https://sourceforge.net/projects/rpcbind/ +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: libtirpc name=rpcbind -version=1.2.5 +version=1.2.6 release=1 source=(https://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2 \ - rpcbind) + rpcbind) build() { - cd $name-$version + cd $name-$version - # use sunrpc instead of rpcbind as service-name - sed '/servname\[\]/s/rpcbind/sunrpc/' -i src/rpcbind.c + # use sunrpc instead of rpcbind as service-name + sed '/servname\[\]/s/rpcbind/sunrpc/' -i src/rpcbind.c - ./configure --prefix=/usr \ - --sbindir=/sbin \ - --disable-libwrap \ - --without-systemdsystemunitdir + ./configure \ + --prefix=/usr \ + --sbindir=/sbin \ + --disable-libwrap \ + --without-systemdsystemunitdir - make - make DESTDIR=$PKG install + make + make DESTDIR=$PKG install - install -D -m 755 $SRC/rpcbind $PKG/etc/rc.d/rpcbind + install -D -m 755 $SRC/rpcbind $PKG/etc/rc.d/rpcbind } |