wok annotate 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
rev   line source
pankso@1009 1 # SliTaz package receipt.
pankso@1009 2
pankso@1009 3 PACKAGE="xfsprogs"
Hans-G?nter@22161 4 VERSION="5.2.1"
pankso@1009 5 CATEGORY="system-tools"
Hans-G?nter@22161 6 SHORT_DESC="Utilities for making, mounting, and manipulating XFS file-systems."
pankso@1009 7 MAINTAINER="patel@math.uga.edu"
pascal@15105 8 LICENSE="GPL3"
Hans-G?nter@22161 9 WEB_SITE="https://xfs.wiki.kernel.org/"
Hans-G?nter@22161 10
pascal@20195 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
pascal@20195 12 WGET_URL="https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/$TARBALL"
pankso@1009 13
pascal@15104 14 DEPENDS="e2fsprogs"
Hans-G?nter@22161 15 BUILD_DEPENDS="e2fsprogs-dev gettext libdevmapper-dev libtool
Hans-G?nter@22161 16 util-linux-blkid-dev util-linux-uuid-dev"
pascal@15104 17
pankso@1009 18 # Rules to configure and make the package.
pankso@1009 19 compile_rules()
pankso@1009 20 {
pascal@1500 21 sed -i 's/--best -c/-9 -c/' include/buildmacros
pascal@9345 22 sed -i -e 's/lt_shell_append=yes/lt_shell_append=no/' \
pascal@9345 23 -e 's/DDEBUG/DNODEBUG/' configure
Hans-G?nter@22161 24
Hans-G?nter@22161 25 ./configure \
pascal@1541 26 $CONFIGURE_ARGS || return 1
slaxemulator@11125 27 sed -i 's/--best/-9/' doc/Makefile Makefile
pascal@1500 28 make &&
slaxemulator@11125 29 make DIST_ROOT=$DESTDIR install
slaxemulator@7230 30 }
pankso@1009 31
pankso@1009 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@1009 33 genpkg_rules()
pankso@1009 34 {
pankso@1009 35 mkdir -p $fs/usr/lib
Hans-G?nter@22161 36
Hans-G?nter@22161 37 cp -a $install/usr/sbin $fs/usr
Hans-G?nter@22161 38 cp -a $install/lib $fs
Hans-G?nter@22161 39 cp -a $install/sbin $fs
pankso@1009 40 }