wok view libsdl-ttf/receipt @ rev 14718

lib[s-z]*: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 11:57:36 2013 +0200 (2013-06-11)
parents 8c08820e8dfb
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl-ttf"
4 SOURCE="SDL_ttf"
5 VERSION="2.0.10"
6 CATEGORY="x-window"
7 SHORT_DESC="SDL ttf support."
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.libsdl.org/projects/SDL_ttf/"
11 WGET_URL="http://www.libsdl.org/projects/SDL_ttf/release/$TARBALL"
13 DEPENDS="libsdl freetype zlib"
14 BUILD_DEPENDS="libsdl-dev freetype-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }