wok diff libotr/receipt @ rev 21803

created recipe for nnn 2.6
author Hans-G?nter Theisgen
date Sat Aug 10 20:59:16 2019 +0100 (2019-08-10)
parents b0c60d808e5c
children ad8b9ff412d2
line diff
     1.1 --- a/libotr/receipt	Mon Sep 16 12:32:27 2013 +0000
     1.2 +++ b/libotr/receipt	Sat Aug 10 20:59:16 2019 +0100
     1.3 @@ -1,13 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libotr"
     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  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2 LGPL2.1"
    1.13 +WEB_SITE="https://www.cypherpunks.ca/otr/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://www.cypherpunks.ca/otr/"
    1.17  WGET_URL="$WEB_SITE$TARBALL"
    1.18  
    1.19  DEPENDS="libgcrypt libgpg-error"
    1.20 @@ -16,9 +17,10 @@
    1.21  # Rules to configure and make the package.
    1.22  compile_rules()
    1.23  {
    1.24 -	cd $src
    1.25 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.26 -	make &&
    1.27 +	./configure		\
    1.28 +		--prefix=/usr	\
    1.29 +		$CONFIGURE_ARGS &&
    1.30 +	make -j 1 &&
    1.31  	make DESTDIR=$DESTDIR install
    1.32  }
    1.33  
    1.34 @@ -26,6 +28,7 @@
    1.35  genpkg_rules()
    1.36  {
    1.37  	mkdir -p $fs/usr/lib
    1.38 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.39 -	cp -a $install/usr/bin $fs/usr
    1.40 +
    1.41 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.42 +	cp -a $install/usr/bin		$fs/usr
    1.43  }