wok view glib-networking/receipt @ rev 12839

dropbear: make it cross-compile for ARM (had to disable zlib)
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 23 01:32:48 2012 +0200 (2012-05-23)
parents 7394cb0e7a93
children a00bf44ed23d
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 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://www.gtk.org/"
10 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="glib libgio libgnutls"
13 BUILD_DEPENDS="glib-dev libgio-dev gnutls-dev intltool automake autoconf git"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --without-ca-certificates \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/gio/modules
30 cp -a $install/usr/lib/gio/modules/*.so* $fs/usr/lib/gio/modules
31 }