summaryrefslogtreecommitdiff
path: root/testing/rpcbind/PKGBUILD
blob: c96b0518e93be393ac8860132c908d822ca76aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# $Id: PKGBUILD 156056 2012-04-12 15:32:54Z tpowa $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>

pkgname=rpcbind
pkgver=0.2.0
pkgrel=7
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
        ftp://ftp.archlinux.org/other/rpcbind/rpcbind-0.2.0.tar.gz
        0001-rpcbind-add-support-for-systemd-socket-activation.patch
        rpcbind-sunrpc.patch
        rpcbind)
md5sums=('1cb086aa6503b97b55382c224c7c77d4'
         'df50ef1e5520ab13d53143899eef82f5'
         'c02ac36a98baac70b8a26190524b7b73'
         '78a963654f57cbb209e228884767836e')

build() {
  cd $srcdir/$pkgname-$pkgver
  # patch for iana services file
  patch -Np1 -i ../rpcbind-sunrpc.patch
  # add systemd support
  patch -Np1 -i ../0001-rpcbind-add-support-for-systemd-socket-activation.patch
  ./configure --prefix=/usr --enable-warmstarts --with-statedir=/run
  make
}

check() {
  cd $srcdir/$pkgname-$pkgver
  make check
}

package() {
  cd $srcdir/$pkgname-$pkgver
  make DESTDIR=$pkgdir install
  # install missing man page - https://bugs.archlinux.org/task/21271
  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
  # install daemon 
  install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind
  # install license
  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
}