wok-6.x diff btrfs-progs/receipt @ rev 22564

updated btrfs packages (4.19.1 -> 5.4)
author Hans-G?nter Theisgen
date Sun Jan 05 16:47:02 2020 +0100 (2020-01-05)
parents 35739426d4fb
children 5261e289a47f
line diff
     1.1 --- a/btrfs-progs/receipt	Thu Dec 13 18:01:50 2018 +0100
     1.2 +++ b/btrfs-progs/receipt	Sun Jan 05 16:47:02 2020 +0100
     1.3 @@ -1,28 +1,31 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="btrfs-progs"
     1.7 -VERSION="4.19.1"
     1.8 +VERSION="5.4"
     1.9  CATEGORY="system-tools"
    1.10 +TAGS="filesystem fault-tolerance"
    1.11  SHORT_DESC="Btrfs Filesystem user space tools."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="http://btrfs.wiki.kernel.org/"
    1.16 -WGET_URL="https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git/snapshot/$TARBALL"
    1.17 -TAGS="filesystem fault-tolerance"
    1.18 +WEB_SITE="https://btrfs.wiki.kernel.org/index.php/Main_Page"
    1.19 +
    1.20 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.21 +WGET_URL="https://www.kernel.org/pub/linux/kernel/people/kdave/$PACKAGE/$TARBALL"
    1.22 +
    1.23  PROVIDE="btrfs-tools"
    1.24 -
    1.25 -DEPENDS="util-linux-uuid zlib acl util-linux-blkid lzo btrfs-mkfs zstd"
    1.26 -BUILD_DEPENDS="util-linux-uuid-dev e2fsprogs e2fsprogs-dev zlib-dev acl-dev \
    1.27 -git util-linux-blkid-dev lzo-dev autoconf automake zstd-dev py3k-dev"
    1.28 +DEPENDS="acl btrfs-mkfs lzo util-linux-blkid util-linux-uuid zlib zstd"
    1.29 +BUILD_DEPENDS="acl-dev autoconf automake e2fsprogs e2fsprogs-dev 
    1.30 +	lzo-dev py3k-dev util-linux-blkid-dev util-linux-uuid-dev 
    1.31 +	zlib-dev zstd-dev"
    1.32  
    1.33  # Rules to configure and make the package.
    1.34  compile_rules()
    1.35  {
    1.36 -	./autogen.sh
    1.37 -	./configure --prefix=/usr \
    1.38 -		--sysconfdir=/etc \
    1.39 -		--disable-documentation \
    1.40 +	./autogen.sh &&
    1.41 +	./configure			\
    1.42 +		--prefix=/usr		\
    1.43 +		--sysconfdir=/etc	\
    1.44 +		--disable-documentation	\
    1.45  		$CONFIGURE_ARGS &&
    1.46  	make &&
    1.47  	make DESTDIR=$DESTDIR prefix=/usr -j 1 install
    1.48 @@ -32,7 +35,9 @@
    1.49  genpkg_rules()
    1.50  {
    1.51  	mkdir -p $fs/usr
    1.52 -	cp -a $install/usr/bin $fs/usr
    1.53 +
    1.54 +	cp -a $install/usr/bin	$fs/usr
    1.55 +
    1.56  	# Split mkfs --> btrfs-mkfs
    1.57 -	rm $fs/usr/bin/mkfs.btrfs
    1.58 +	rm			$fs/usr/bin/mkfs.btrfs
    1.59  }