wok view zsnes/receipt @ rev 10339

raptor: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 22 01:34:28 2011 +0000 (2011-05-22)
parents 940b5937e496
children a0250385f2a5
line source
1 # SliTaz package receipt.
3 PACKAGE="zsnes"
4 VERSION="1.51"
5 CATEGORY="games"
6 MAINTAINER="slaxemulator@gmail.com"
7 SHORT_DESC="Super Nintendo emulator"
8 WEB_SITE="http://www.zsnes.com/"
9 DEPENDS="gcc-lib-base libsdl libpng ncurses mesa zlib"
10 BUILD_DEPENDS="$DEPENDS nasm libsdl-dev libpng-dev ncurses-dev mesa-dev automake autoconf zlib-dev patch"
11 TARBALL="zsnes151src.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="snes"
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 patch -p1 -i $stuff/zsnes.patch
20 cd $src/src
21 ./configure --prefix=/usr \
22 --x-libraries=/usr/lib \
23 --enable-release \
24 force_arch=i486 \
25 $CONFIGURE_ARGS &&
26 make &&
27 make -j 1 install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp -a $src/src/zsnes $fs/usr/bin
35 }