wok view libsdl-gfx/receipt @ rev 2243

perl-*: fix WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 15 18:22:29 2009 +0000 (2009-02-15)
parents
children 59228667f806
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl-gfx"
4 SOURCE="SDL_gfx"
5 VERSION="2.0.17"
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 }