wok view cryptopp/receipt @ rev 10696

passenger: Added apache-dev to bdeps.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 27 17:06:05 2011 +0000 (2011-05-27)
parents eafbbe3577c9
children ee6d13c8379c
line source
1 # SliTaz package receipt.
3 PACKAGE="cryptopp"
4 VERSION="5.6.0"
5 CATEGORY="security"
6 SHORT_DESC="C++ class library of cryptographic schemes."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.cryptopp.com/"
10 WGET_URL="http://mirror.slitaz.org/sources/packages/c/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 make &&
17 make PREFIX=$PWD/_pkg/usr install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/share/doc/$PACKAGE
24 cp -a $_pkg/usr/lib $fs/usr
25 cp -a $_pkg/usr/include $fs/usr
26 cp $src/License.txt $fs/usr/share/doc/$PACKAGE
27 cp $src/Readme.txt $fs/usr/share/doc/$PACKAGE
28 }