wok view libsdl-gfx/receipt @ rev 3389

Ren: django -> python-django
author Claudinei Pereira <claudinei@slitaz.org>
date Thu Jun 11 23:56:06 2009 +0000 (2009-06-11)
parents a7b619564b2b
children e8024c01fc47
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl-gfx"
4 SOURCE="SDL_gfx"
5 VERSION="2.0.19"
6 CATEGORY="x-window"
7 SHORT_DESC="SDL gfx support."
8 MAINTAINER="pankso@slitaz.org"
9 DEPENDS="xorg libSDL"
10 BUILD_DEPENDS="xorg-dev libSDL-dev"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.ferzkopp.net/joomla/content/view/19/14/"
13 WGET_URL="http://www.ferzkopp.net/Software/SDL_gfx-2.0/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }