wok-next view cryptopp/receipt @ rev 19863
Up eudev, make-slitaz-icons, ntfs-3g, pcmanfm, polkit, slitaz-base-files, slitaz-boot-scripts, slitaz-icons-paper.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Sep 12 01:34:11 2017 +0300 (2017-09-12) |
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 }