wok view glib-networking/receipt @ rev 15461

Up: enlightenment-backgrounds (0.17.5)
author Dominique Corbex <domcox@slitaz.org>
date Tue Nov 05 20:58:44 2013 +0100 (2013-11-05)
parents 98ec505a5191
children e62fe73c97ae
line source
1 # SliTaz package receipt.
3 PACKAGE="glib-networking"
4 VERSION="2.32.1"
5 CATEGORY="x-window"
6 SHORT_DESC="TLS support for glib."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.gtk.org/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="glib libgio libgnutls"
14 BUILD_DEPENDS="glib-dev libgio-dev gnutls-dev intltool automake autoconf git"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
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 }