wok view libsdl-gfx/receipt @ rev 7143

mplayerplug-in: fix FIREFOX_VER
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 06 11:45:41 2010 +0100 (2010-11-06)
parents b7884bbe0a6c
children 8c08820e8dfb
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl-gfx"
4 SOURCE="SDL_gfx"
5 VERSION="2.0.22"
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 }