wok annotate cryptopp/receipt @ rev 21415

updated make (4.1 -> 4.2.1)
author Hans-G?nter Theisgen
date Tue Apr 23 17:28:22 2019 +0100 (2019-04-23)
parents 6e8b1bcb30e2
children 29af9ccd87db
rev   line source
pankso@4074 1 # SliTaz package receipt.
pankso@4074 2
pankso@4074 3 PACKAGE="cryptopp"
Hans-G?nter@20813 4 VERSION="8.0.0"
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@20671 9 WEB_SITE="https://www.cryptopp.com"
Hans-G?nter@20813 10
Hans-G?nter@20813 11 TARBALL="${PACKAGE}800.zip"
samuel_trassare@13679 12 WGET_URL="$WEB_SITE/$TARBALL"
pankso@4074 13
pankso@4074 14 # Rules to configure and make the package.
pankso@4074 15 compile_rules()
pankso@4074 16 {
pascal@20212 17 sed -i 's|uname -m|echo i486|' GNUmakefile
Hans-G?nter@20813 18 make PREFIX=/usr &&
Hans-G?nter@20813 19 make PREFIX=/usr libcryptopp.so &&
Hans-G?nter@20813 20 make PREFIX=/usr install
pankso@4074 21 }
pankso@4074 22
pankso@4074 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4074 24 genpkg_rules()
pankso@4074 25 {
pankso@4074 26 mkdir -p $fs/usr/share/doc/$PACKAGE
samuel_trassare@13684 27 cp -a $install/usr/lib $fs/usr
samuel_trassare@13684 28 cp -a $install/usr/include $fs/usr
pankso@4074 29 cp $src/License.txt $fs/usr/share/doc/$PACKAGE
pankso@4074 30 cp $src/Readme.txt $fs/usr/share/doc/$PACKAGE
pankso@4074 31 }