wok-next view xfsdump/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents 9102678083fb
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xfsdump"
4 VERSION="3.1.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="XFS commands and utilities"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://xfs.wiki.kernel.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://mirrors.edge.kernel.org/pub/linux/utils/fs/xfs/xfsdump/$TARBALL"
14 BUILD_DEPENDS="libtool gettext-dev util-linux-uuid-dev xfsprogs-dev \
15 util-linux-uuid-dev attr-dev"
17 compile_rules() {
18 rm /bin/rpm # busybox rpm is useless here
20 ./configure \
21 CFLAGS=-D_FILE_OFFSET_BITS=64 \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install || return 1
27 # change absolute symlinks to relative ones
28 fix symlinks
29 }
31 genpkg_rules() {
32 copy @std
33 DEPENDS="attr ncurses util-linux-uuid xfsprogs"
34 }