wok view stella/receipt @ rev 10355

libIDL: Update WGET_URL to use GNOME_MIRROR in tazwok.conf and cook.conf.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 22 16:49:53 2011 +0000 (2011-05-22)
parents
children e274e203fbda
line source
1 # SliTaz package receipt.
3 PACKAGE="stella"
4 VERSION="3.3"
5 CATEGORY="games"
6 SHORT_DESC="A multi-platform Atari 2600 VCS emulator."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="gcc-lib-base libsdl libpng"
9 BUILD_DEPENDS="libsdl-dev libpng-dev zlib-dev"
10 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
11 WEB_SITE="http://stella.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr &&
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/pixmaps
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share/applications $fs/usr/share
29 cp -a $_pkg/usr/share/icons/stella.png $fs/usr/share/pixmaps
30 }