wok view cryptopp/receipt @ rev 5233

busybox: tipo in /etc/init.d/udhcpd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 08 17:17:44 2010 +0200 (2010-04-08)
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 }