wok annotate 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
rev   line source
pankso@1188 1 # SliTaz package receipt.
pankso@1188 2
pankso@1188 3 PACKAGE="libsdl-ttf"
pankso@1188 4 SOURCE="SDL_ttf"
slaxemulator@6199 5 VERSION="2.0.10"
pankso@1188 6 CATEGORY="x-window"
pankso@1188 7 SHORT_DESC="SDL ttf support."
pankso@1188 8 MAINTAINER="pankso@slitaz.org"
pankso@1188 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pankso@1188 10 WEB_SITE="http://www.libsdl.org/projects/SDL_ttf/"
pankso@1188 11 WGET_URL="http://www.libsdl.org/projects/SDL_ttf/release/$TARBALL"
pankso@1188 12
pascal@14718 13 DEPENDS="libsdl freetype zlib"
pascal@14718 14 BUILD_DEPENDS="libsdl-dev freetype-dev"
pascal@14718 15
pankso@1188 16 # Rules to configure and make the package.
pankso@1188 17 compile_rules()
pankso@1188 18 {
pankso@1188 19 cd $src
pascal@2476 20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@2476 21 make &&
pascal@14718 22 make DESTDIR=$DESTDIR install
pankso@1188 23 }
pankso@1188 24
pankso@1188 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@1188 26 genpkg_rules()
pankso@1188 27 {
pankso@1188 28 mkdir -p $fs/usr/lib
pascal@14718 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@1188 30 }