wok rev 21004

updated gsasl and gsasl-dev (0.2.29 -> 1.8.0)
author Hans-G?nter Theisgen
date Fri Mar 08 17:54:27 2019 +0100 (2019-03-08)
parents aaae1f868d34
children a28d11e05227
files gsasl-dev/receipt gsasl/receipt
line diff
     1.1 --- a/gsasl-dev/receipt	Fri Mar 08 17:22:14 2019 +0100
     1.2 +++ b/gsasl-dev/receipt	Fri Mar 08 17:54:27 2019 +0100
     1.3 @@ -1,22 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="gsasl-dev"
     1.7 -VERSION="0.2.29"
     1.8 +VERSION="1.8.0"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Simple Authentication and Security Layer, development files."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL3"
    1.13 -WEB_SITE="http://www.gnu.org/software/$PACKAGE/"
    1.14 +WEB_SITE="https://www.gnu.org/software/$PACKAGE/"
    1.15 +
    1.16  WANTED="gsasl"
    1.17 -
    1.18  DEPENDS="pkg-config"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23  	mkdir -p $fs/usr/lib
    1.24 -	cp -a $install/usr/include $fs/usr
    1.25 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 +	cp -a $install/usr/include		$fs/usr
    1.28 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.29 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.30  }
    1.31 -
     2.1 --- a/gsasl/receipt	Fri Mar 08 17:22:14 2019 +0100
     2.2 +++ b/gsasl/receipt	Fri Mar 08 17:54:27 2019 +0100
     2.3 @@ -1,25 +1,28 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="gsasl"
     2.7 -VERSION="0.2.29"
     2.8 +VERSION="1.8.0"
     2.9  CATEGORY="system-tools"
    2.10  SHORT_DESC="Simple Authentication and Security Layer."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL3"
    2.13 +WEB_SITE="https://www.gnu.org/software/$PACKAGE/"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16 -WEB_SITE="http://www.gnu.org/software/$PACKAGE/"
    2.17 -WGET_URL="ftp://alpha.gnu.org/pub/gnu/$PACKAGE/$TARBALL"
    2.18 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    2.19  
    2.20  DEPENDS="gnutls libgcrypt libgpg-error ncurses readline zlib libidn libkrb5 \
    2.21 -libcomerr3 libtasn1"
    2.22 +	libcomerr3 libtasn1"
    2.23  
    2.24  # Rules to configure and make the package.
    2.25  compile_rules()
    2.26  {
    2.27 -	cd $src
    2.28 -	./configure --prefix=/usr --infodir=/usr/share/info \
    2.29 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    2.30 -	make $MAKEFLAGS &&
    2.31 +	./configure				\
    2.32 +		--prefix=/usr			\
    2.33 +		--infodir=/usr/share/info	\
    2.34 +		--mandir=/usr/share/man		\
    2.35 +		$CONFIGURE_ARGS &&
    2.36 +	make $MAKEFLAGS -j 1 &&
    2.37  	make DESTDIR=$DESTDIR install
    2.38  }
    2.39  
    2.40 @@ -27,7 +30,6 @@
    2.41  genpkg_rules()
    2.42  {
    2.43  	mkdir -p $fs/usr/lib
    2.44 -	cp -a $install/usr/bin $fs/usr
    2.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.46 +	cp -a $install/usr/bin		$fs/usr
    2.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.48  }
    2.49 -