wok view glib-networking/receipt @ rev 12596

Up: libltdl to 2.4.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Apr 28 21:45:20 2012 +0000 (2012-04-28)
parents 0e777b9e1bd3
children 7394cb0e7a93
line source
1 # SliTaz package receipt.
3 PACKAGE="glib-networking"
4 VERSION="2.28.7"
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="$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 }