wok view cryptopp/receipt @ rev 13679

cryptopp: up 5.6.1
author Samuel Trassare <samuel_trassare@yahoo.com>
date Tue Nov 27 09:57:29 2012 -0800 (2012-11-27)
parents 25f2b76b9db6
children 3c7348ca269f
line source
1 # SliTaz package receipt.
3 PACKAGE="cryptopp"
4 VERSION="5.6.1"
5 CATEGORY="security"
6 SHORT_DESC="C++ class library of cryptographic schemes."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="${PACKAGE}561.zip"
9 WEB_SITE="http://www.cryptopp.com"
10 WGET_URL="$WEB_SITE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 patch -Np1 < $stuff/$PACKAGE-$VERSION-gcc-4.7.0.patch
17 make
18 make libcryptopp.so
19 make PREFIX=$PWD/_pkg/usr install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share/doc/$PACKAGE
26 cp -a $INSTALL/usr/lib $fs/usr
27 cp -a $INSTALL/usr/include $fs/usr
28 cp $src/License.txt $fs/usr/share/doc/$PACKAGE
29 cp $src/Readme.txt $fs/usr/share/doc/$PACKAGE
30 }