wok-next view rpcbind/receipt @ rev 20714

netkit-rsh: typo
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 12:56:13 2018 +0300 (2018-05-27)
parents 10df65db91ad
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="rpcbind"
4 VERSION="0.2.4"
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="http://rpcbind.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="libtirpc-dev"
16 compile_rules() {
17 case "$ARCH" in
18 arm*) export CPPFLAGS="$CPPFLAGS -I/cross/$ARCH/sysroot/usr/include/tirpc" ;;
19 esac
21 ./configure \
22 --with-systemdsystemunitdir=no \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 copy @std
30 DEPENDS="libtirpc"
31 }