wok-next diff cryptopp/receipt @ rev 20616

xrdp: up 0.9.3.1; zopfli: fix build; gcc61: attempt to fix; add gcc6 (latest among 6.x.x).
gcc61 and gcc6 are broken now.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 21 05:15:11 2018 +0300 (2018-04-21)
parents c1e059ce9a05
children a3c581bf52b8
line diff
     1.1 --- a/cryptopp/receipt	Fri Dec 06 19:58:32 2013 +0000
     1.2 +++ b/cryptopp/receipt	Sat Apr 21 05:15:11 2018 +0300
     1.3 @@ -1,31 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="cryptopp"
     1.7 -VERSION="5.6.1"
     1.8 +VERSION="5.6.5"
     1.9  CATEGORY="security"
    1.10  SHORT_DESC="C++ class library of cryptographic schemes."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="MIT PublicDomain"
    1.13 -TARBALL="${PACKAGE}561.zip"
    1.14 +TARBALL="${PACKAGE}${VERSION//./}.zip"
    1.15  WEB_SITE="http://www.cryptopp.com"
    1.16  WGET_URL="$WEB_SITE/$TARBALL"
    1.17  
    1.18  # Rules to configure and make the package.
    1.19  compile_rules()
    1.20  {
    1.21 -	cd $src
    1.22 -	patch -Np1 < $stuff/$PACKAGE-$VERSION-gcc-4.7.0.patch
    1.23  	make 
    1.24  	make libcryptopp.so
    1.25 -	make PREFIX=$DESTDIR/usr install
    1.26 +	make PREFIX=/usr install
    1.27  }
    1.28  
    1.29  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.30  genpkg_rules()
    1.31  {
    1.32  	mkdir -p $fs/usr/share/doc/$PACKAGE
    1.33 -	cp -a $install/usr/lib $fs/usr
    1.34 -	cp -a $install/usr/include $fs/usr
    1.35 +	cp -a $install/usr/* $fs/usr
    1.36  	cp $src/License.txt $fs/usr/share/doc/$PACKAGE
    1.37  	cp $src/Readme.txt $fs/usr/share/doc/$PACKAGE
    1.38  }