wok rev 1009

Add xfsprogs - Tools for XFS filesystem
author Christophe Lincoln <pankso@slitaz.org>
date Mon Jul 07 18:27:20 2008 +0200 (2008-07-07)
parents 2be9698f3728
children fea5060f74cd
files xfsprogs/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xfsprogs/receipt	Mon Jul 07 18:27:20 2008 +0200
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="xfsprogs"
     1.7 +VERSION="2.9.8-1"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Utilities for making, mounting, and manipulating XFS file-system"
    1.10 +MAINTAINER="patel@math.uga.edu"
    1.11 +BUILD_DEPENDS="e2fsprogs-dev libtool"
    1.12 +TARBALL=${PACKAGE}_${VERSION}.tar.gz
    1.13 +WEB_SITE="http://oss.sgi.com/projects/xfs/"
    1.14 +WGET_URL="ftp://oss.sgi.com/projects/xfs/cmd_tars/$TARBALL"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	mv $PACKAGE-2.9.8 $PACKAGE-$VERSION 2>/dev/null
    1.20 +	cd $src
    1.21 +	./configure \
    1.22 +		--prefix=/usr \
    1.23 +		--sbindir=/sbin \
    1.24 +		--mandir=/usr/share/man \
    1.25 +		$CONFIGURE_ARGS
    1.26 +	make
    1.27 +	make DIST_ROOT=$PWD/_pkg install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/lib
    1.34 +	cp -a $_pkg/usr/bin $fs/usr
    1.35 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.36 +	cp -a $_pkg/sbin $fs
    1.37 +}