wok view python-pycryptopp/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents a7f918cb00d1
children 7390f8de9846
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pycryptopp"
4 VERSION="0.6.0"
5 CATEGORY="development"
6 SHORT_DESC="Wrapper around a few algorithms from Crypto++ and python-Ed25519."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 SOURCE="pycryptopp"
10 TARBALL="$SOURCE-$VERSION.1206569328141510525648634803928199668821045408958.tar.gz"
11 WEB_SITE="http://pypi.python.org/pypi/pycryptopp"
12 WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
14 DEPENDS="python"
15 BUILD_DEPENDS="python-dev setuptools"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 python setup.py build
22 python setup.py install --root=$DESTDIR
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/lib $fs/usr
30 }