wok rev 8125

aufs: s/lzma-alone/lzma/
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 24 17:47:26 2011 +0100 (2011-01-24)
parents 6fc060ce8c8c
children 8808f618b300
files aufs/receipt
line diff
     1.1 --- a/aufs/receipt	Mon Jan 24 08:10:30 2011 +0000
     1.2 +++ b/aufs/receipt	Mon Jan 24 17:47:26 2011 +0100
     1.3 @@ -6,7 +6,7 @@
     1.4  SHORT_DESC="aufs2 kernel module"
     1.5  MAINTAINER="slaxemulator@gmail.com"
     1.6  DEPENDS="linux"
     1.7 -BUILD_DEPENDS="linux-module-headers git"
     1.8 +BUILD_DEPENDS="linux-module-headers git lzma"
     1.9  WEB_SITE="http://aufs.sf.net/"
    1.10  PROVIDE="linux-aufs"
    1.11  
    1.12 @@ -16,20 +16,12 @@
    1.13  	local AUFSDIR="$PACKAGE-$VERSION"
    1.14  	TARBALL=$SOURCES_REPOSITORY/$AUFSDIR.tar.lzma
    1.15  	if [ -f $TARBALL ]; then
    1.16 -		lzma-alone d $TARBALL $AUFSDIR.tar 
    1.17 -		tar xf $AUFSDIR.tar
    1.18 -		if [ -f $AUFSDIR.tar ]; then
    1.19 -			rm -f $AUFSDIR.tar
    1.20 -		fi
    1.21 +		unlzma -c $TARBALL | tar xf -
    1.22  		cd $AUFSDIR && git checkout origin/aufs2.1-37
    1.23  	else
    1.24  		# Aufs2 from git repository
    1.25  		git clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs2-standalone.git $AUFSDIR
    1.26 -		tar cf $AUFSDIR.tar $AUFSDIR
    1.27 -		lzma-alone e $AUFSDIR.tar $TARBALL
    1.28 -		if [ -f $AUFSDIR.tar ]; then
    1.29 -			rm -f $AUFSDIR.tar
    1.30 -		fi
    1.31 +		tar cf - $AUFSDIR | lzma e $TARBALL -si
    1.32  		cd $AUFSDIR && git checkout origin/aufs2.1-37
    1.33  	fi
    1.34  	cd $src