wok-stable annotate stella/receipt @ rev 12036
Fix stella again, thanks godane
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Wed Mar 07 05:49:39 2012 +0100 (2012-03-07) |
parents | c8ba921ca4dd |
children |
rev | line source |
---|---|
slaxemulator@7268 | 1 # SliTaz package receipt. |
slaxemulator@7268 | 2 |
slaxemulator@7268 | 3 PACKAGE="stella" |
slaxemulator@11680 | 4 VERSION="3.5" |
slaxemulator@7268 | 5 CATEGORY="games" |
slaxemulator@7268 | 6 SHORT_DESC="A multi-platform Atari 2600 VCS emulator." |
slaxemulator@7268 | 7 MAINTAINER="slaxemulator@gmail.com" |
slaxemulator@7268 | 8 DEPENDS="gcc-lib-base libsdl libpng" |
slaxemulator@7268 | 9 BUILD_DEPENDS="libsdl-dev libpng-dev zlib-dev" |
slaxemulator@7268 | 10 TARBALL="$PACKAGE-$VERSION-src.tar.gz" |
slaxemulator@7268 | 11 WEB_SITE="http://stella.sourceforge.net/" |
slaxemulator@7268 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
slaxemulator@7268 | 13 |
slaxemulator@7268 | 14 # Rules to configure and make the package. |
slaxemulator@7268 | 15 compile_rules() |
slaxemulator@7268 | 16 { |
slaxemulator@7268 | 17 cd $src |
slaxemulator@7268 | 18 ./configure \ |
slaxemulator@7268 | 19 --prefix=/usr && |
slaxemulator@11001 | 20 make && make DESTDIR=$DESTDIR install |
slaxemulator@7268 | 21 } |
slaxemulator@7268 | 22 |
slaxemulator@7268 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@7268 | 24 genpkg_rules() |
slaxemulator@7268 | 25 { |
samuel_trassare@12010 | 26 mkdir -p $fs/usr/share/pixmaps $fs/usr/share/applications |
slaxemulator@7268 | 27 cp -a $_pkg/usr/bin $fs/usr |
slaxemulator@11680 | 28 cp -a $_pkg/usr/share/icons/hicolor/48x48/apps/stella.png $fs/usr/share/pixmaps |
gokhlayeh@12036 | 29 sed -i 's|Icon=stella.png|Icon=stella|' $_pkg/usr/share/applications/stella.desktop |
slaxemulator@7268 | 30 } |