wok rev 22910

glib-networking: added build dependency libunistring-dev
author Hans-G?nter Theisgen
date Mon Feb 24 09:35:30 2020 +0100 (2020-02-24)
parents 2ce8d8e11fff
children e985517d6dc7
files glib-networking/receipt
line diff
     1.1 --- a/glib-networking/receipt	Mon Feb 24 07:33:52 2020 +0100
     1.2 +++ b/glib-networking/receipt	Mon Feb 24 09:35:30 2020 +0100
     1.3 @@ -6,14 +6,16 @@
     1.4  SHORT_DESC="TLS support for glib."
     1.5  MAINTAINER="pankso@slitaz.org"
     1.6  LICENSE="LGPL2"
     1.7 +WEB_SITE="https://www.gtk.org/"
     1.8 +
     1.9  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.10 -WEB_SITE="https://www.gtk.org/"
    1.11  WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.12 +
    1.13 +DEPENDS="glib libgio libgnutls libunistring"
    1.14 +BUILD_DEPENDS="glib-dev gnutls-dev libgio-dev libgnutls libunistring-dev"
    1.15 +
    1.16  HOST_ARCH="i486 arm"
    1.17  
    1.18 -DEPENDS="glib libgio libgnutls"
    1.19 -BUILD_DEPENDS="glib-dev libgio-dev gnutls-dev libgnutls"
    1.20 -
    1.21  # Handle cross compilation.
    1.22  case "$ARCH" in
    1.23  	i?86) BUILD_DEPENDS="$BUILD_DEPENDS intltool automake autoconf" ;;
    1.24 @@ -22,11 +24,12 @@
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	./configure \
    1.29 -		--prefix=/usr \
    1.30 -		--without-ca-certificates \
    1.31 +	./configure				\
    1.32 +		--prefix=/usr			\
    1.33 +		--without-ca-certificates	\
    1.34  		$CONFIGURE_ARGS &&
    1.35 -	make && make install
    1.36 +	make &&
    1.37 +	make install
    1.38  }
    1.39  
    1.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.41 @@ -34,4 +37,4 @@
    1.42  {
    1.43  	mkdir -p $fs/usr/lib/gio/modules
    1.44  	cp -a $install/usr/lib/gio/modules/*.so* $fs/usr/lib/gio/modules
    1.45 -}
    1.46 \ No newline at end of file
    1.47 +}