wok view xfsprogs/receipt @ rev 20700

updated afio (2.5.1 -> 2.5.2)
author Hans-G?nter Theisgen
date Tue Feb 05 17:01:36 2019 +0100 (2019-02-05)
parents a25b11019e81
children fca6217790af
line source
1 # SliTaz package receipt.
3 PACKAGE="xfsprogs"
4 VERSION="4.14.0"
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.xz"
10 WEB_SITE="http://oss.sgi.com/projects/xfs/"
11 WGET_URL="https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/$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 sed -i 's/--best -c/-9 -c/' include/buildmacros
20 sed -i -e 's/lt_shell_append=yes/lt_shell_append=no/' \
21 -e 's/DDEBUG/DNODEBUG/' configure
22 ./configure \
23 $CONFIGURE_ARGS || return 1
24 sed -i 's/--best/-9/' doc/Makefile Makefile
25 make &&
26 make DIST_ROOT=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/sbin $fs/usr
34 cp -a $install/lib $fs
35 cp -a $install/sbin $fs
36 }