wok rev 8111
Fixed pcsxr-svn to use the real tar and not busybox tar.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Jan 23 15:36:07 2011 +0000 (2011-01-23) |
parents | 0307e0345907 |
children | 30506fc48f40 |
files | pcsxr-svn/receipt |
line diff
1.1 --- a/pcsxr-svn/receipt Sun Jan 23 14:01:49 2011 +0000 1.2 +++ b/pcsxr-svn/receipt Sun Jan 23 15:36:07 2011 +0000 1.3 @@ -7,7 +7,7 @@ 1.4 MAINTAINER="slaxemulator@gmail.com" 1.5 DEPENDS="libcdio libglade xorg-libXtst xorg-libXv mesa libsdl" 1.6 BUILD_DEPENDS="glib-dev libcdio libcdio-dev libglade-dev xorg-libXtst xorg-libXtst-dev xorg-libXv xorg-libXv-dev mesa-dev \ 1.7 -zlib-dev libsdl libsdl-dev subversion nasm gettext" 1.8 +zlib-dev libsdl libsdl-dev subversion nasm gettext tar" 1.9 WEB_SITE="http://pcsxr.codeplex.com/" 1.10 1.11 # Rules to configure and make the package. 1.12 @@ -15,12 +15,13 @@ 1.13 { 1.14 [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION 1.15 TARBALL=$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma 1.16 + [ -L /bin/tar ] && tazpkg get-install tar --forced 1.17 if [ -f $TARBALL ]; then 1.18 - busybox tar xaf $TARBALL 1.19 + tar -xf $TARBALL 1.20 else 1.21 echo "Cloning revision $VERSION from subversion repository..." 1.22 echo "t" | svn co https://pcsxr.svn.codeplex.com/svn -r $VERSION $PACKAGE-$VERSION 1.23 - busybox tar caf $TARBALL $PACKAGE-$VERSION 1.24 + tar -c --lzma -f $TARBALL $PACKAGE-$VERSION 1.25 fi 1.26 cd $src/pcsxr 1.27 ./configure \