wok diff btrfs-progs/receipt @ rev 18215

Up btrfs-progs (4.1.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 17 17:23:52 2015 +0200 (2015-07-17)
parents 77e2c5ffec1c
children daad21b281dd
line diff
     1.1 --- a/btrfs-progs/receipt	Fri Jan 24 15:57:29 2014 +0000
     1.2 +++ b/btrfs-progs/receipt	Fri Jul 17 17:23:52 2015 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="btrfs-progs"
     1.7 -VERSION="3.12"
     1.8 +VERSION="4.1.2"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Btrfs Filesystem user space tools."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12 @@ -10,16 +10,21 @@
    1.13  WEB_SITE="http://btrfs.wiki.kernel.org/"
    1.14  WGET_URL="git|git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git"
    1.15  TAGS="filesystem fault-tolerance"
    1.16 +PROVIDES="btrfs-tools"
    1.17  
    1.18  DEPENDS="util-linux-uuid zlib acl util-linux-blkid lzo"
    1.19  BUILD_DEPENDS="util-linux-uuid-dev e2fsprogs e2fsprogs-dev zlib-dev acl-dev \
    1.20 -git util-linux-blkid-dev lzo-dev"
    1.21 +git util-linux-blkid-dev lzo-dev autoconf automake"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	cd $src
    1.27 -	make CFLAGS="${CFLAGS}" &&
    1.28 +	./autogen.sh
    1.29 +	./configure --prefix=/usr \
    1.30 +		--sysconfdir=/etc \
    1.31 +		--disable-documentation \
    1.32 +		$CONFIGURE_ARGS &&
    1.33 +	make &&
    1.34  	make DESTDIR=$DESTDIR prefix=/usr install
    1.35  }
    1.36  
    1.37 @@ -31,4 +36,3 @@
    1.38  	# Split mkfs --> btrfs-mkfs
    1.39  	rm $fs/usr/bin/mkfs.btrfs
    1.40  }
    1.41 -