wok view libsoup/receipt @ rev 4867

Add: xfce4-ristretto
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Feb 04 22:33:41 2010 +0100 (2010-02-04)
parents 3d23b55e1045
children d265f77ba0e1
line source
1 # SliTaz package receipt.
3 PACKAGE="libsoup"
4 VERSION="2.27.91"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Soup Library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base libxml2 zlib glib libgio gtk+ libssl"
9 BUILD_DEPENDS="gtk+-dev libgio libgio-dev libxml2-dev openssl-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://live.gnome.org/LibSoup"
12 WGET_URL="ftp://ftp.gnome.org/pub/gnome/sources/libsoup/2.27/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 --with-html-dir=/usr/share/doc \
22 --disable-gtk-doc \
23 --without-gnome \
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/lib
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }