wok view libwebkit/receipt @ rev 3671

Add filezilla
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Jul 11 12:00:11 2009 +0200 (2009-07-11)
parents ccca050fe091
children 1eb71064eddf
line source
1 # SliTaz package receipt.
3 PACKAGE="libwebkit"
4 SOURCE="webkit"
5 VERSION="1.1.10"
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"
13 BUILD_DEPENDS="gtk+-dev 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"
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
24 ./configure \
25 --prefix=/usr \
26 --infodir=/usr/share/info \
27 --mandir=/usr/share/man \
28 --enable-video=no \
29 --enable-svg=no \
30 $CONFIGURE_ARGS &&
31 make && make DESTDIR=$PWD/_pkg install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib
38 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
39 }