wok rev 14780
manaplus: fix source tarball version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 04 12:43:03 2013 +0000 (2013-07-04) |
parents | 846ed2387cd0 |
children | a436a235f098 |
files | alien/receipt manaplus/receipt |
line diff
1.1 --- a/alien/receipt Thu Jul 04 08:55:30 2013 +0200 1.2 +++ b/alien/receipt Thu Jul 04 12:43:03 2013 +0000 1.3 @@ -9,7 +9,7 @@ 1.4 TARBALL="${PACKAGE}_$VERSION.tar.gz" 1.5 WEB_SITE="http://joeyh.name/code/alien/" 1.6 WGET_URL="http://ftp.de.debian.org/debian/pool/main/${PACKAGE:0:1}/$PACKAGE/$TARBALL" 1.7 -SUGGESTED="dpkg dpkg-dev debhelper gcc make" 1.8 +SUGGESTED="rpm4 dpkg dpkg-dev debhelper gcc make" 1.9 1.10 DEPENDS="perl" 1.11 BUILD_DEPENDS=""
2.1 --- a/manaplus/receipt Thu Jul 04 08:55:30 2013 +0200 2.2 +++ b/manaplus/receipt Thu Jul 04 12:43:03 2013 +0000 2.3 @@ -4,9 +4,9 @@ 2.4 CATEGORY="games" 2.5 SHORT_DESC="Extended client for Evol Online and The Mana World" 2.6 MAINTAINER="admin@trixarian.net" 2.7 -TARBALL="manaplus.tar.xz" 2.8 +TARBALL="$PACKAGE-$VERSION.tar.xz" 2.9 WEB_SITE="http://manaplus.org/" 2.10 -WGET_URL="http://download.evolonline.org/manaplus/download/$TARBALL" 2.11 +WGET_URL="http://download.evolonline.org/manaplus/download/$VERSION/$TARBALL" 2.12 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" 2.13 DEPENDS="curl physfs libxml2 libsdl-mixer libsdl-image libsdl-net libsdl-ttf libpng libsdl-gfx ttf-dejavu zlib" 2.14 2.15 @@ -16,16 +16,16 @@ 2.16 cd $src 2.17 ./configure --prefix=/usr --without-opengl $CONFIGURE_ARGS && 2.18 make && 2.19 - make DESTDIR=$PWD/_pkg install 2.20 + make DESTDIR=$DESTDIR install 2.21 } 2.22 2.23 # Rules to gen a SliTaz package suitable for Tazpkg. 2.24 genpkg_rules() 2.25 { 2.26 mkdir -p $fs/usr/share 2.27 - cp -a $_pkg/usr/bin $fs/usr 2.28 - cp -a $_pkg/usr/share/applications $fs/usr/share/ 2.29 - cp -a $_pkg/usr/share/locale $fs/usr/share/ 2.30 - cp -a $_pkg/usr/share/manaplus $fs/usr/share/ 2.31 - cp -a $_pkg/usr/share/pixmaps $fs/usr/share/ 2.32 + cp -a $install/usr/bin $fs/usr 2.33 + cp -a $install/usr/share/applications $fs/usr/share/ 2.34 + cp -a $install/usr/share/locale $fs/usr/share/ 2.35 + cp -a $install/usr/share/manaplus $fs/usr/share/ 2.36 + cp -a $install/usr/share/pixmaps $fs/usr/share/ 2.37 }