wok view xfsprogs/receipt @ rev 16557

Up: slitaz-base-files (5.6.2)
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 01 08:34:51 2014 +0200 (2014-05-01)
parents 3e083997f52a
children a25b11019e81
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 LICENSE="GPL3"
9 TARBALL=${PACKAGE}-${VERSION}.tar.gz
10 WEB_SITE="http://oss.sgi.com/projects/xfs/"
11 WGET_URL="ftp://oss.sgi.com/projects/xfs/cmd_tars/$TARBALL"
13 DEPENDS="e2fsprogs"
14 BUILD_DEPENDS="e2fsprogs-dev libtool gettext util-linux-blkid-dev util-linux-uuid util-linux-uuid-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's/--best -c/-9 -c/' include/buildmacros
21 sed -i -e 's/lt_shell_append=yes/lt_shell_append=no/' \
22 -e 's/DDEBUG/DNODEBUG/' configure
23 ./configure \
24 $CONFIGURE_ARGS || return 1
25 sed -i 's/--best/-9/' doc/Makefile Makefile
26 make &&
27 make DIST_ROOT=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/sbin $fs/usr
35 cp -a $install/lib $fs
36 cp -a $install/sbin $fs
37 }