wok view gtklife/receipt @ rev 6365

Up: gstreamer, gstreamer-dev to 0.10.30.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Sep 21 01:28:31 2010 +0000 (2010-09-21)
parents 7ceb93094fe3
children 1ae5963f23df
line source
1 # SliTaz package receipt.
3 PACKAGE="gtklife"
4 VERSION="5.1"
5 CATEGORY="games"
6 SHORT_DESC="Fast, featureful, open-source Conway's Life program."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ xorg-libXdamage"
9 BUILD_DEPENDS="gtk+-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://ironphoenix.org/tril/gtklife/"
12 WGET_URL="http://ironphoenix.org/tril/gtklife/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --bindir=/usr/games \
21 --with-gtk2 \
22 $CONFIGURE_ARGS &&
23 make || return 1
24 mkdir -p _pkg/usr/games _pkg/usr/share/gtklife
25 cp -a graphics _pkg/usr/share/gtklife
26 cp -a patterns _pkg/usr/share/gtklife
27 cp gtklife _pkg/usr/games
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $_pkg/* $fs
34 }