wok view xfsprogs/receipt @ rev 22291

updated xorg-xkbutils (1.0.3 -> 1.0.4)
author Hans-G?nter Theisgen
date Wed Nov 13 16:11:02 2019 +0100 (2019-11-13)
parents 0e6bb1dcdc15
children bb9c7e76505b
line source
1 # SliTaz package receipt.
3 PACKAGE="xfsprogs"
4 VERSION="5.2.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for making, mounting, and manipulating XFS file-systems."
7 MAINTAINER="patel@math.uga.edu"
8 LICENSE="GPL3"
9 WEB_SITE="https://xfs.wiki.kernel.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/$TARBALL"
14 DEPENDS="e2fsprogs"
15 BUILD_DEPENDS="e2fsprogs-dev gettext libdevmapper-dev libtool
16 util-linux-blkid-dev util-linux-uuid-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i 's/--best -c/-9 -c/' include/buildmacros
22 sed -i -e 's/lt_shell_append=yes/lt_shell_append=no/' \
23 -e 's/DDEBUG/DNODEBUG/' configure
25 ./configure \
26 $CONFIGURE_ARGS || return 1
27 sed -i 's/--best/-9/' doc/Makefile Makefile
28 make &&
29 make DIST_ROOT=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
37 cp -a $install/usr/sbin $fs/usr
38 cp -a $install/lib $fs
39 cp -a $install/sbin $fs
40 }