wok view nfs-utils/receipt @ rev 7069

Fix gogglesmm.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Nov 02 01:12:26 2010 +0000 (2010-11-02)
parents 65963831cb85
children 4d60a47b5df0
line source
1 # SliTaz package receipt.
3 PACKAGE="nfs-utils"
4 VERSION="1.2.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Network FileSystem tools."
7 MAINTAINER="pascal;bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://nfs.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/nfs/$PACKAGE/$VERSION/$TARBALL"
11 DEPENDS="libtirpc libwrap util-linux-ng-blkid util-linux-ng-uuid"
12 BUILD_DEPENDS="libtirpc-dev util-linux-ng-blkid-dev libcap-dev"
13 TAGS="filesystem"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --disable-nfsv4 --disable-gss \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/var $fs
32 cp -a $_pkg/sbin $fs
33 cp -a $_pkg/usr/sbin $fs/usr
34 }