wok view libwebkit/receipt @ rev 5003

l*: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 28 16:17:14 2010 +0100 (2010-02-28)
parents e24b9f715190
children d091efe0761f
line source
1 # SliTaz package receipt.
3 PACKAGE="libwebkit"
4 SOURCE="webkit"
5 VERSION="1.1.16"
6 CATEGORY="network"
7 SHORT_DESC="xHTML render library."
8 DEPENDS="gtk+ enchant icu libxslt expat gtk+ jpeg libpng libcurl libxml2 openssl sqlite
9 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXcomposite
10 xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes
11 xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXt
12 xorg-libXdamage libsoup gcc-lib-base"
13 BUILD_DEPENDS="gtk+-dev enchant enchant-dev icu icu-dev gperf libxslt-dev jpeg-dev libpng-dev glib-dev autoconf automake
14 sqlite-dev libtool m4 bison flex xorg-libXdamage-dev libsoup-dev libxml2-dev libxcb-dev xcb-util-dev"
15 MAINTAINER="mallory@sweetpeople.org"
16 TARBALL="$SOURCE-$VERSION.tar.gz"
17 WEB_SITE="http://webkitgtk.org"
18 WGET_URL="$WEB_SITE/$TARBALL"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
25 # When fully implemented, this ./configure option will eliminate the large icu dependency
26 # There is a planned set of 4 patches, of which only the first has been implemented to date
27 # https://bugs.webkit.org/show_bug.cgi?id=15914
28 # --with-unicode-backend=glib
30 ./configure \
31 --prefix=/usr \
32 --infodir=/usr/share/info \
33 --mandir=/usr/share/man \
34 --enable-video=no \
35 --enable-svg=no \
36 $CONFIGURE_ARGS &&
37 make && make DESTDIR=$PWD/_pkg install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/lib
44 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
45 }