wok view xfsprogs/receipt @ rev 9287

xfsprogs: partial workaround for compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 16 18:30:53 2011 +0100 (2011-03-16)
parents 72e89ad0efc8
children 8a15c0e7e6ee
line source
1 # SliTaz package receipt.
3 PACKAGE="xfsprogs"
4 VERSION="3.1.4"
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-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 's/lt_shell_append=yes/lt_shell_append=no/' configure
20 ./configure \
21 $CONFIGURE_ARGS || return 1
22 sed -i 's/--best/-9/' doc/Makefile build/Makefile build/tar/Makefile
23 make &&
24 make DIST_ROOT=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/sbin $fs/usr
32 cp -a $_pkg/lib $fs
33 cp -a $_pkg/sbin $fs
34 }