wok-next view cryptopp/receipt @ rev 20715

Up nsd (4.1.21)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 13:10:46 2018 +0300 (2018-05-27)
parents c1e059ce9a05
children a3c581bf52b8
line source
1 # SliTaz package receipt.
3 PACKAGE="cryptopp"
4 VERSION="5.6.5"
5 CATEGORY="security"
6 SHORT_DESC="C++ class library of cryptographic schemes."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT PublicDomain"
9 TARBALL="${PACKAGE}${VERSION//./}.zip"
10 WEB_SITE="http://www.cryptopp.com"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 make
17 make libcryptopp.so
18 make PREFIX=/usr install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/share/doc/$PACKAGE
25 cp -a $install/usr/* $fs/usr
26 cp $src/License.txt $fs/usr/share/doc/$PACKAGE
27 cp $src/Readme.txt $fs/usr/share/doc/$PACKAGE
28 }