wok view libsdl-pango/receipt @ rev 14943

Up: edbus (1.7.8)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:15:48 2013 +0200 (2013-08-08)
parents 6eff489aa802
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="libsdl-pango"
4 VERSION="0.1.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Pango SDL binding."
7 MAINTAINER="slaxemulator@gmail.com"
8 SOURCE="SDL_Pango"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://sdlpango.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/sdlpango/$TARBALL"
13 DEPENDS="pango libsdl"
14 BUILD_DEPENDS="pango-dev libsdl-dev pkg-config libxml2-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 patch -Np0 -i $stuff/SDL_Pango-$VERSION-API-adds.patch
21 patch -Np1 -i $stuff/matrix_declarations.patch
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }