wok view libsoup/receipt @ rev 3639

abiword-plugins: fix compile for gcc44
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 03 18:01:23 2009 +0200 (2009-07-03)
parents 6cf08b22eab9
children 75e8e125094e
line source
1 # SliTaz package receipt.
3 PACKAGE="libsoup"
4 VERSION="2.26.0"
5 CATEGORY="x-window"
6 SHORT_DESC="GNOME Soup Library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="gtk+-dev libgio libgio-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.26/$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 }