wok-next annotate rpcbind/receipt @ rev 20976
Follow recent changes in the Python renames
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Sep 25 17:35:51 2018 +0300 (2018-09-25) |
parents | 10df65db91ad |
children | d5aab818505e |
rev | line source |
---|---|
al@20604 | 1 # SliTaz package receipt v2. |
pascal@6257 | 2 |
pascal@6257 | 3 PACKAGE="rpcbind" |
al@20609 | 4 VERSION="0.2.4" |
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@20604 | 9 WEB_SITE="http://rpcbind.sourceforge.net/" |
al@20604 | 10 |
pascal@6257 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@6257 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pankso@16236 | 13 |
pascal@6257 | 14 BUILD_DEPENDS="libtirpc-dev" |
pascal@6257 | 15 |
al@20604 | 16 compile_rules() { |
al@20604 | 17 case "$ARCH" in |
al@20604 | 18 arm*) export CPPFLAGS="$CPPFLAGS -I/cross/$ARCH/sysroot/usr/include/tirpc" ;; |
al@20604 | 19 esac |
pankso@16236 | 20 |
al@20609 | 21 ./configure \ |
al@20609 | 22 --with-systemdsystemunitdir=no \ |
al@20609 | 23 $CONFIGURE_ARGS && |
al@20604 | 24 make && |
al@20604 | 25 make install |
pascal@6257 | 26 } |
pascal@6257 | 27 |
al@20604 | 28 genpkg_rules() { |
al@20604 | 29 copy @std |
al@20604 | 30 DEPENDS="libtirpc" |
pascal@6257 | 31 } |