2010-11-27 22:31:08 +01:00
|
|
|
# Template file for 'pycrypto'
|
|
|
|
pkgname=pycrypto
|
2013-12-28 17:05:41 +01:00
|
|
|
version=2.6.1
|
2013-02-21 19:55:18 +01:00
|
|
|
revision=1
|
2010-11-27 22:31:08 +01:00
|
|
|
build_style=python-module
|
2013-12-28 17:05:41 +01:00
|
|
|
hostmakedepends="python"
|
2012-05-23 18:26:56 +02:00
|
|
|
makedepends="gmp-devel python-devel"
|
2010-11-27 22:31:08 +01:00
|
|
|
short_desc="The Python Cryptography Toolkit"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2013-02-21 19:55:18 +01:00
|
|
|
homepage="https://www.dlitz.net/software/pycrypto/"
|
|
|
|
license="PSF, Public domain"
|
|
|
|
distfiles="http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/$pkgname-$version.tar.gz"
|
2013-12-28 17:05:41 +01:00
|
|
|
checksum=f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c
|
2010-11-27 22:31:08 +01:00
|
|
|
long_desc="
|
|
|
|
The Python cryptography toolkit is intended to provide a reliable and stable
|
|
|
|
base for writing Python programs that require cryptographic functions."
|
|
|
|
|
2013-02-21 19:55:18 +01:00
|
|
|
pre_build() {
|
2013-04-09 01:49:27 +02:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2013-02-21 19:55:18 +01:00
|
|
|
sed -e "s|'/usr/include/'|''|g" -i setup.py
|
2013-12-28 17:05:41 +01:00
|
|
|
configure_args+=" ac_cv_func_malloc_0_nonnull=yes"
|
2013-02-21 19:55:18 +01:00
|
|
|
fi
|
2013-12-28 17:05:41 +01:00
|
|
|
CC= CFLAGS= ./configure ${configure_args}
|
2013-02-21 19:55:18 +01:00
|
|
|
}
|
2013-04-14 11:13:30 +02:00
|
|
|
|
|
|
|
pycrypto_package() {
|
|
|
|
pycompile_module="Crypto"
|
|
|
|
pkg_install() {
|
2013-12-28 17:05:41 +01:00
|
|
|
vmove all
|
2013-04-14 11:13:30 +02:00
|
|
|
}
|
|
|
|
}
|