void-packages/srcpkgs/python-crypto/template
Alessio Sergi 217e7d31f2 srcpkgs: remove python3.4-* transitional dummy packages
After more than a year the switch to python3 packages, it is time to say
them goodbye. So long, and thanks for all the fish.
2017-12-20 11:29:51 +01:00

34 lines
1,006 B
Bash

# Template file for 'python-crypto'
pkgname=python-crypto
version=2.6.1
revision=9
wrksrc="pycrypto-${version}"
build_style=python-module
hostmakedepends="python-devel python3-devel"
makedepends="${hostmakedepends} gmp-devel"
depends="python"
pycompile_module="Crypto"
short_desc="The Python Cryptography Toolkit (Python2)"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="https://www.dlitz.net/software/pycrypto/"
license="PSF, Public domain"
distfiles="https://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-$version.tar.gz"
checksum=f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c
pre_build() {
if [ "$CROSS_BUILD" ]; then
sed -e "s|'/usr/include/'|''|g" -i setup.py
CC= CFLAGS= ./configure ${configure_args} --host=${XBPS_CROSS_TRIPLET}
else
CC="$CC" CFLAGS="$CFLAGS" ./configure ${configure_args}
fi
}
python3-crypto_package() {
depends="python3"
pycompile_module="Crypto"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
}
}