diff options
author | Juergen Daubert <jue@jue.li> | 2015-11-04 12:34:21 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2015-11-04 12:34:21 +0100 |
commit | 3a4a6d5cb33860995a4b3b64491c25bd816191df (patch) | |
tree | f46d4f8e4e03341312a4a0c82d653be7b1c2927a /rpcbind/Pkgfile | |
parent | 02f3f88fce063dae6838c8581da99a7ea7cfce83 (diff) | |
parent | 5e71c79a865f776f55871e385455733e91b1b0b1 (diff) | |
download | opt-3a4a6d5cb33860995a4b3b64491c25bd816191df.tar.gz opt-3a4a6d5cb33860995a4b3b64491c25bd816191df.tar.xz |
Merge branch '3.1' into 3.2
Conflicts:
firefox/.footprint
firefox/Pkgfile
Diffstat (limited to 'rpcbind/Pkgfile')
-rw-r--r-- | rpcbind/Pkgfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/rpcbind/Pkgfile b/rpcbind/Pkgfile index bff1a5b1c..1a0d2563b 100644 --- a/rpcbind/Pkgfile +++ b/rpcbind/Pkgfile @@ -7,17 +7,22 @@ name=rpcbind version=0.2.3 release=2 source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2 \ - rpcbind) + $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 } |