wok view libsdl-gfx/receipt @ rev 6723

Add config file to mesa-dri to set permissions
author Antoine Bodin <gokhlayeh@mailoo.org>
date Fri Oct 15 19:14:43 2010 +0200 (2010-10-15)
parents e8024c01fc47
children 136745aec91f
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl-gfx"
4 SOURCE="SDL_gfx"
5 VERSION="2.0.20"
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 }