wok rev 21270

updated libotr and libotr-dev (4.0.0 -> 4.1.1)
author Hans-G?nter Theisgen
date Fri Apr 12 15:58:11 2019 +0100 (2019-04-12)
parents fafbb5087ce7
children eb55bc8c389d
files libotr-dev/receipt libotr/receipt
line diff
     1.1 --- a/libotr-dev/receipt	Fri Apr 12 15:48:18 2019 +0100
     1.2 +++ b/libotr-dev/receipt	Fri Apr 12 15:58:11 2019 +0100
     1.3 @@ -1,22 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libotr-dev"
     1.7 -VERSION="4.0.0"
     1.8 +VERSION="4.1.1"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="Allows you to have private conversations over messenger."
    1.11 +SHORT_DESC="Allows you to have private conversations over messenger - development files."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2 LGPL2.1"
    1.14 -WEB_SITE="http://www.cypherpunks.ca/otr/"
    1.15 +WEB_SITE="https://www.cypherpunks.ca/otr/"
    1.16 +
    1.17  WANTED="libotr"
    1.18 -
    1.19  DEPENDS="libotr pkg-config"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.25 -	cp -a $install/usr/include $fs/usr
    1.26 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.27 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.28 -	cp -a $install/usr/share/aclocal $fs/usr/share
    1.29 +	mkdir -p $fs/usr/lib
    1.30 +	mkdir -p $fs/usr/share
    1.31 +
    1.32 +	cp -a $install/usr/include		$fs/usr
    1.33 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.34 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.35 +	cp -a $install/usr/share/aclocal	$fs/usr/share
    1.36  }
     2.1 --- a/libotr/receipt	Fri Apr 12 15:48:18 2019 +0100
     2.2 +++ b/libotr/receipt	Fri Apr 12 15:58:11 2019 +0100
     2.3 @@ -1,13 +1,14 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libotr"
     2.7 -VERSION="4.0.0"
     2.8 +VERSION="4.1.1"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="Allows you to have private conversations over messenger."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL2 LGPL2.1"
    2.13 +WEB_SITE="https://www.cypherpunks.ca/otr/"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16 -WEB_SITE="http://www.cypherpunks.ca/otr/"
    2.17  WGET_URL="$WEB_SITE$TARBALL"
    2.18  
    2.19  DEPENDS="libgcrypt libgpg-error"
    2.20 @@ -16,9 +17,10 @@
    2.21  # Rules to configure and make the package.
    2.22  compile_rules()
    2.23  {
    2.24 -	cd $src
    2.25 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    2.26 -	make &&
    2.27 +	./configure		\
    2.28 +		--prefix=/usr	\
    2.29 +		$CONFIGURE_ARGS &&
    2.30 +	make -j 1 &&
    2.31  	make DESTDIR=$DESTDIR install
    2.32  }
    2.33  
    2.34 @@ -26,6 +28,7 @@
    2.35  genpkg_rules()
    2.36  {
    2.37  	mkdir -p $fs/usr/lib
    2.38 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.39 -	cp -a $install/usr/bin $fs/usr
    2.40 +
    2.41 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.42 +	cp -a $install/usr/bin		$fs/usr
    2.43  }