wok-6.x rev 8139
Up: aufs-utils to 20110124.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Jan 24 22:49:13 2011 +0000 (2011-01-24) |
parents | d2253a0776e4 |
children | e8d99bee75fd |
files | aufs-utils/receipt |
line diff
1.1 --- a/aufs-utils/receipt Mon Jan 24 22:46:57 2011 +0000 1.2 +++ b/aufs-utils/receipt Mon Jan 24 22:49:13 2011 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="aufs-utils" 1.7 -VERSION="20101014" 1.8 +VERSION="20110124" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="The aufs utils." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -13,12 +13,12 @@ 1.13 compile_rules() 1.14 { 1.15 [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION 1.16 - TARBALL=$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.gz 1.17 + TARBALL=$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma 1.18 if [ -f $TARBALL ]; then 1.19 - tar xzf $TARBALL 1.20 + unlzma -c $TARBALL | tar xf - 1.21 else 1.22 git clone http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git $PACKAGE-$VERSION 1.23 - tar czf $TARBALL $PACKAGE-$VERSION 1.24 + tar cf - $AUFSDIR | lzma e $TARBALL -siN 1.25 fi 1.26 1.27 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`