wok-next annotate rpcbind/receipt @ rev 21159
updated diffutils (3.6 -> 3.7)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Feb 20 08:46:59 2019 +0100 (2019-02-20) |
parents | 5ffe59e2de3a |
children |
rev | line source |
---|---|
al@20604 | 1 # SliTaz package receipt v2. |
pascal@6257 | 2 |
pascal@6257 | 3 PACKAGE="rpcbind" |
al@21085 | 4 VERSION="1.2.5" |
pascal@6257 | 5 CATEGORY="network" |
al@20604 | 6 SHORT_DESC="RPC program numbers to universal addresses converter" |
pascal@6257 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15601 | 8 LICENSE="BSD" |
al@21032 | 9 WEB_SITE="https://sourceforge.net/projects/rpcbind/" |
al@20604 | 10 |
pascal@6257 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@6257 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
al@21085 | 13 TARBALL_SHA1="e9f8046b69b45efe2396a8cca1c1f090644c6d31" |
pankso@16236 | 14 |
pascal@6257 | 15 BUILD_DEPENDS="libtirpc-dev" |
al@21085 | 16 DEPENDS="libtirpc" |
pascal@6257 | 17 |
al@20604 | 18 compile_rules() { |
al@21085 | 19 # use correct service name |
al@21085 | 20 sed -i "/servname/s:rpcbind:sunrpc:" src/rpcbind.c |
al@21085 | 21 |
al@20609 | 22 ./configure \ |
al@21085 | 23 --with-rpcuser=root \ |
al@21085 | 24 --enable-warmstarts \ |
al@21085 | 25 --without-systemdsystemunitdir \ |
al@20609 | 26 $CONFIGURE_ARGS && |
al@20604 | 27 make && |
al@20604 | 28 make install |
pascal@6257 | 29 } |