wok-next annotate 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
rev   line source
pankso@4074 1 # SliTaz package receipt.
pankso@4074 2
pankso@4074 3 PACKAGE="cryptopp"
pascal@19727 4 VERSION="5.6.5"
pankso@4074 5 CATEGORY="security"
pankso@4074 6 SHORT_DESC="C++ class library of cryptographic schemes."
erjo@5122 7 MAINTAINER="pankso@slitaz.org"
pascal@15606 8 LICENSE="MIT PublicDomain"
pascal@19727 9 TARBALL="${PACKAGE}${VERSION//./}.zip"
samuel_trassare@13679 10 WEB_SITE="http://www.cryptopp.com"
samuel_trassare@13679 11 WGET_URL="$WEB_SITE/$TARBALL"
pankso@4074 12
pankso@4074 13 # Rules to configure and make the package.
pankso@4074 14 compile_rules()
pankso@4074 15 {
samuel_trassare@13679 16 make
samuel_trassare@13679 17 make libcryptopp.so
pascal@19727 18 make PREFIX=/usr install
pankso@4074 19 }
pankso@4074 20
pankso@4074 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4074 22 genpkg_rules()
pankso@4074 23 {
pankso@4074 24 mkdir -p $fs/usr/share/doc/$PACKAGE
pascal@19727 25 cp -a $install/usr/* $fs/usr
pankso@4074 26 cp $src/License.txt $fs/usr/share/doc/$PACKAGE
pankso@4074 27 cp $src/Readme.txt $fs/usr/share/doc/$PACKAGE
pankso@4074 28 }