wok view glib-networking/receipt @ rev 15741

gnucash: set license to GPL2
author Dominique Corbex <domcox@slitaz.org>
date Wed Jan 01 20:51:00 2014 +0100 (2014-01-01)
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 }