# HG changeset patch # User Pascal Bellard # Date 1372941783 0 # Node ID dfbec69888ad123851afa4e9942c32865a5e92c6 # Parent 846ed2387cd04a5a2c1899af71f738584a53e248 manaplus: fix source tarball version diff -r 846ed2387cd0 -r dfbec69888ad alien/receipt --- a/alien/receipt Thu Jul 04 08:55:30 2013 +0200 +++ b/alien/receipt Thu Jul 04 12:43:03 2013 +0000 @@ -9,7 +9,7 @@ TARBALL="${PACKAGE}_$VERSION.tar.gz" WEB_SITE="http://joeyh.name/code/alien/" WGET_URL="http://ftp.de.debian.org/debian/pool/main/${PACKAGE:0:1}/$PACKAGE/$TARBALL" -SUGGESTED="dpkg dpkg-dev debhelper gcc make" +SUGGESTED="rpm4 dpkg dpkg-dev debhelper gcc make" DEPENDS="perl" BUILD_DEPENDS="" diff -r 846ed2387cd0 -r dfbec69888ad manaplus/receipt --- a/manaplus/receipt Thu Jul 04 08:55:30 2013 +0200 +++ b/manaplus/receipt Thu Jul 04 12:43:03 2013 +0000 @@ -4,9 +4,9 @@ CATEGORY="games" SHORT_DESC="Extended client for Evol Online and The Mana World" MAINTAINER="admin@trixarian.net" -TARBALL="manaplus.tar.xz" +TARBALL="$PACKAGE-$VERSION.tar.xz" WEB_SITE="http://manaplus.org/" -WGET_URL="http://download.evolonline.org/manaplus/download/$TARBALL" +WGET_URL="http://download.evolonline.org/manaplus/download/$VERSION/$TARBALL" BUILD_DEPENDS="curl-dev enet libxml2-dev libsdl-mixer-dev libsdl-image-dev libsdl-net-dev libsdl-ttf-dev libsdl-gfx-dev physfs-dev png-dev zlib-dev" DEPENDS="curl physfs libxml2 libsdl-mixer libsdl-image libsdl-net libsdl-ttf libpng libsdl-gfx ttf-dejavu zlib" @@ -16,16 +16,16 @@ cd $src ./configure --prefix=/usr --without-opengl $CONFIGURE_ARGS && make && - make DESTDIR=$PWD/_pkg install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/share/applications $fs/usr/share/ - cp -a $_pkg/usr/share/locale $fs/usr/share/ - cp -a $_pkg/usr/share/manaplus $fs/usr/share/ - cp -a $_pkg/usr/share/pixmaps $fs/usr/share/ + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/applications $fs/usr/share/ + cp -a $install/usr/share/locale $fs/usr/share/ + cp -a $install/usr/share/manaplus $fs/usr/share/ + cp -a $install/usr/share/pixmaps $fs/usr/share/ }