wok-stable rev 8260

Changed lorcon compression to .tar.lzma.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Jan 29 16:20:39 2011 +0000 (2011-01-29)
parents 7c1d1ee26141
children d6c6468ad9cf
files lorcon/receipt
line diff
     1.1 --- a/lorcon/receipt	Sat Jan 29 15:56:47 2011 +0000
     1.2 +++ b/lorcon/receipt	Sat Jan 29 16:20:39 2011 +0000
     1.3 @@ -11,15 +11,13 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -	TARBALL=$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.gz
     1.8 -	if [ -d $PACKAGE-$VERSION ]; then
     1.9 -		true
    1.10 -	elif [ -f $TARBALL ]; then
    1.11 -		tar xzf $TARBALL
    1.12 +	TARBALL=$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma
    1.13 +	if [ -f $TARBALL ]; then
    1.14 +		unlzma -c $TARBALL | tar xf -
    1.15  	else
    1.16  		svn checkout -r $VERSION \
    1.17  			http://802.11ninja.net/svn/lorcon/trunk $PACKAGE-$VERSION
    1.18 -		tar czf $TARBALL $PACKAGE-$VERSION
    1.19 +		tar cf - $PACKAGE-$VERSION | lzma e $TARBALL -si
    1.20  	fi
    1.21  	cd $src
    1.22  	./configure \