wok view cryptopp/receipt @ rev 5053

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents
children 25f2b76b9db6
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 }