diff options
author | Michael Hanson <hansonorders@verizon.net> | 2010-12-15 02:55:54 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2010-12-15 02:55:54 (GMT) |
commit | ab340c7f02acde98b5f89a945d930f0328704386 (patch) | |
tree | a6a07fac7496a9238ce6640266b0586b87303a02 /abs/core/rpcbind/PKGBUILD | |
parent | c7ee05a4a17710f0fe63eba48ada8daab4713240 (diff) | |
parent | a3823515f7d144339c81b2454033ed7a0696e55c (diff) | |
download | linhes_pkgbuild-ab340c7f02acde98b5f89a945d930f0328704386.zip linhes_pkgbuild-ab340c7f02acde98b5f89a945d930f0328704386.tar.gz linhes_pkgbuild-ab340c7f02acde98b5f89a945d930f0328704386.tar.bz2 |
Merge branch 'testing' of knoppmyth.net:linhes_pkgbuild into testing
Diffstat (limited to 'abs/core/rpcbind/PKGBUILD')
-rw-r--r-- | abs/core/rpcbind/PKGBUILD | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/abs/core/rpcbind/PKGBUILD b/abs/core/rpcbind/PKGBUILD index 11d8a91..81d6254 100644 --- a/abs/core/rpcbind/PKGBUILD +++ b/abs/core/rpcbind/PKGBUILD @@ -1,24 +1,28 @@ -# $Id: PKGBUILD 54912 2009-10-11 20:12:23Z giovanni $ +# $Id: PKGBUILD 86473 2010-08-02 07:44:00Z tpowa $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=rpcbind pkgver=0.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="portmap replacement which supports RPC over various protocols" arch=(i686 x86_64) depends=('bash' 'glibc' 'libtirpc') url="http://rpcbind.sourceforge.net" license=('custom') replaces=('portmap') -source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2 +source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2 + rpcbind-sunrpc.patch rpcbind) md5sums=('1a77ddb1aaea8099ab19c351eeb26316' + 'c02ac36a98baac70b8a26190524b7b73' '78a963654f57cbb209e228884767836e') build() { cd $srcdir/$pkgname-$pkgver + # patch for iana services file + patch -Np1 -i ../rpcbind-sunrpc.patch ./configure --prefix=/usr - make || return 1 - make DESTDIR=$pkgdir install || return 1 + make + make DESTDIR=$pkgdir install # install daemon install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind # install license |