wok-current view rpcbind/receipt @ rev 11918
abiword: removed extension from desktop file
| author | Samuel Trassare <samuel_trassare@yahoo.com> | 
|---|---|
| date | Wed Feb 29 14:43:42 2012 -0800 (2012-02-29) | 
| parents | |
| children | 23c3aed67cd9 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="rpcbind"
     4 VERSION="0.2.0"
     5 CATEGORY="network"
     6 SHORT_DESC="RPC program numbers to universal addresses converter."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
     9 WEB_SITE="http://rpcbind.sourceforge.net/"
    10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    11 DEPENDS="libtirpc"
    12 BUILD_DEPENDS="libtirpc-dev"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure --prefix=/usr --infodir=/usr/share/info \
    19 	--mandir=/usr/share/man \
    20 	$CONFIGURE_ARGS &&
    21 	make &&
    22 	make DESTDIR=$PWD/_pkg install
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28 	mkdir -p $fs/usr
    29 	cp -a $_pkg/usr/bin $fs/usr
    30 }