wok-next view glib-networking/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="glib-networking"
4 VERSION="2.58.0"
5 CATEGORY="x-window"
6 SHORT_DESC="TLS support for glib"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://www.gtk.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/basicnet/glib-networking.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
15 BUILD_DEPENDS="meson ninja intltool gnutls-dev gsettings-desktop-schemas-dev \
16 glib-dev"
18 DEPENDS_std="glib libgnutls libp11-kit"
19 CONFIG_FILES_std="/etc/profile.d/gio.sh"
21 compile_rules() {
22 mkdir build
23 cd build
25 meson-wrapper \
26 -Dlibproxy_support=false \
27 -Dpkcs11_support=true \
28 &&
29 ninja &&
30 ninja install || return 1
32 install -Dm644 $stuff/gio.sh $install/etc/profile.d/gio.sh
33 }