wok view glib-networking/receipt @ rev 10802

glib-networking: Fixed it to use offical source url. Please remove source tarball on tank or this package will not build.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Jun 04 08:51:01 2011 +0000 (2011-06-04)
parents 045183e2bc4c
children 6002528a0d24
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="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="glib libgio libgnutls"
13 BUILD_DEPENDS="glib-dev libgio-dev gnutls-dev 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 }