wok view libsoup/receipt @ rev 4506

linux/boot: fix cmdline tail
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 23 11:01:54 2009 +0100 (2009-11-23)
parents 70fd687c2f6b
children 3d23b55e1045
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+ libgcrypt gnutls"
9 SUGGESTED="libgpg-error"
10 BUILD_DEPENDS="gtk+-dev libgio libgio-dev libxml2-dev gnutls-dev libgcrypt-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://live.gnome.org/LibSoup"
13 WGET_URL="ftp://ftp.gnome.org/pub/gnome/sources/libsoup/2.27/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 --with-html-dir=/usr/share/doc \
23 --disable-gtk-doc \
24 --without-gnome \
25 $CONFIGURE_ARGS &&
26 make &&
27 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 }