wok view libgtkhtml/receipt @ rev 12626

gmpc: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 29 12:37:38 2012 +0200 (2012-04-29)
parents 3193d21a094b
children 8f447cf2eee5
line source
1 # SliTaz package receipt.
3 PACKAGE="libgtkhtml"
4 VERSION="2.11.1"
5 CATEGORY="x-window"
6 SHORT_DESC="A gtk-based HTML rendering/editing library."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base glib libgio expat libxml2 zlib \
9 gtk+ cairo atk fontconfig freetype pango pixman libpng \
10 xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXcursor \
11 xorg-libXdamage xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender"
12 BUILD_DEPENDS="pkg-config libxml2-dev gtk+-dev xorg-libXdamage-dev expat-dev"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WEB_SITE="http://freshmeat.net/projects/libgtkhtml/"
15 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/2.11/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
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 $_pkg/usr/lib/*.so* $fs/usr/lib
35 }