wok-next view rpcbind/receipt @ rev 21726

updated firefox-official (77.0 -> 81.0)
author Hans-G?nter Theisgen
date Sun Sep 27 14:34:31 2020 +0100 (2020-09-27)
parents 5ffe59e2de3a
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="rpcbind"
4 VERSION="1.2.5"
5 CATEGORY="network"
6 SHORT_DESC="RPC program numbers to universal addresses converter"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://sourceforge.net/projects/rpcbind/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TARBALL_SHA1="e9f8046b69b45efe2396a8cca1c1f090644c6d31"
15 BUILD_DEPENDS="libtirpc-dev"
16 DEPENDS="libtirpc"
18 compile_rules() {
19 # use correct service name
20 sed -i "/servname/s:rpcbind:sunrpc:" src/rpcbind.c
22 ./configure \
23 --with-rpcuser=root \
24 --enable-warmstarts \
25 --without-systemdsystemunitdir \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }