wok view glib-networking/receipt @ rev 10800

Add glib-networking (needed for https support in webkit based browser)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jun 04 13:55:59 2011 +0200 (2011-06-04)
parents
children 0e777b9e1bd3
line source
1 # SliTaz package receipt.
3 PACKAGE="glib-networking"
4 VERSION="2.28.6"
5 CATEGORY="x-window"
6 SHORT_DESC="TLS support for glib."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gtk.org/"
10 WGET_URL="git://git.gnome.org/glib-networking"
11 BRANCH="$VERSION"
13 DEPENDS="glib libgio libgnutls"
14 BUILD_DEPENDS="glib-dev libgio-dev gnutls-dev automake autoconf git"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./autogen.sh \
21 --prefix=/usr \
22 --without-ca-certificates \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/gio/modules
31 cp -a $install/usr/lib/gio/modules/*.so* $fs/usr/lib/gio/modules
32 }