# HG changeset patch # User Christopher Rogers # Date 1295796967 0 # Node ID b89a598ef281c0fa4c490f38b9098bced24f0509 # Parent 0307e0345907ae4e5014208b3b2c2ecec4ac8644 Fixed pcsxr-svn to use the real tar and not busybox tar. diff -r 0307e0345907 -r b89a598ef281 pcsxr-svn/receipt --- a/pcsxr-svn/receipt Sun Jan 23 14:01:49 2011 +0000 +++ b/pcsxr-svn/receipt Sun Jan 23 15:36:07 2011 +0000 @@ -7,7 +7,7 @@ MAINTAINER="slaxemulator@gmail.com" DEPENDS="libcdio libglade xorg-libXtst xorg-libXv mesa libsdl" BUILD_DEPENDS="glib-dev libcdio libcdio-dev libglade-dev xorg-libXtst xorg-libXtst-dev xorg-libXv xorg-libXv-dev mesa-dev \ -zlib-dev libsdl libsdl-dev subversion nasm gettext" +zlib-dev libsdl libsdl-dev subversion nasm gettext tar" WEB_SITE="http://pcsxr.codeplex.com/" # Rules to configure and make the package. @@ -15,12 +15,13 @@ { [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION TARBALL=$SOURCES_REPOSITORY/$PACKAGE-$VERSION.tar.lzma + [ -L /bin/tar ] && tazpkg get-install tar --forced if [ -f $TARBALL ]; then - busybox tar xaf $TARBALL + tar -xf $TARBALL else echo "Cloning revision $VERSION from subversion repository..." echo "t" | svn co https://pcsxr.svn.codeplex.com/svn -r $VERSION $PACKAGE-$VERSION - busybox tar caf $TARBALL $PACKAGE-$VERSION + tar -c --lzma -f $TARBALL $PACKAGE-$VERSION fi cd $src/pcsxr ./configure \