wok view pango/receipt @ rev 5153

get-virtualbox: Fix build.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 24 14:34:06 2010 +0100 (2010-03-24)
parents db63cccdb8d4
children 9e38c2f11c48
line source
1 # SliTaz package receipt.
3 PACKAGE="pango"
4 VERSION="1.24.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Library for layout and rendering of text."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="cairo glib expat libxml2 xorg-libXft fontconfig freetype xcb-util"
9 BUILD_DEPENDS="$DEPENDS cairo-dev glib-dev expat-dev libxml2-dev xorg-libXft-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.pango.org/"
12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/pango/1.24/$TARBALL"
13 CONFIG_FILES="/etc/pango"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --with-html-dir=/usr/share/doc \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin $fs/usr/lib
33 cp -a $_pkg/usr/bin/* $fs/usr/bin
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/pango $fs/usr/lib
36 rm -rf $fs/usr/lib/pango/1.6.0/modules/*.la
37 cp -a $_pkg/etc $fs
38 pango-querymodules > $fs/etc/pango/pango.modules
39 }
41 # Pre and post install commands for Tazpkg.
42 post_install()
43 {
44 echo "Processing post-install commands..."
45 # Rebuils pango.modules when installed.
46 chroot $1/ /usr/bin/pango-querymodules > $1/etc/pango/pango.modules
47 }