wok view xfsprogs/receipt @ rev 12681

Up linux-nbd, linux-aoe (3.2.14)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 01 18:24:36 2012 +0200 (2012-05-01)
parents 79766a97e4a1
children 3e083997f52a
line source
1 # SliTaz package receipt.
3 PACKAGE="xfsprogs"
4 VERSION="3.1.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for making, mounting, and manipulating XFS file-system"
7 MAINTAINER="patel@math.uga.edu"
8 DEPENDS="e2fsprogs"
9 BUILD_DEPENDS="e2fsprogs-dev libtool gettext util-linux-blkid-dev util-linux-ng-uuid util-linux-ng-uuid-dev"
10 TARBALL=${PACKAGE}-${VERSION}.tar.gz
11 WEB_SITE="http://oss.sgi.com/projects/xfs/"
12 WGET_URL="ftp://oss.sgi.com/projects/xfs/cmd_tars/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 sed -i 's/--best -c/-9 -c/' include/buildmacros
19 sed -i -e 's/lt_shell_append=yes/lt_shell_append=no/' \
20 -e 's/DDEBUG/DNODEBUG/' configure
21 ./configure \
22 $CONFIGURE_ARGS || return 1
23 sed -i 's/--best/-9/' doc/Makefile Makefile
24 make &&
25 make DIST_ROOT=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/sbin $fs/usr
33 cp -a $_pkg/lib $fs
34 cp -a $_pkg/sbin $fs
35 }