wok view libgtkhtml/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | |
children | f3c1a01dae12 |
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="slitaz-toolchain 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 }