33 lines
876 B
Bash
33 lines
876 B
Bash
# Template file for 'python-cffi'
|
|
pkgname=python-cffi
|
|
version=1.8.3
|
|
revision=1
|
|
wrksrc="cffi-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools libffi-devel"
|
|
makedepends="python-devel python3.4-devel libffi-devel"
|
|
depends="python-pycparser"
|
|
pycompile_module="cffi"
|
|
short_desc="C foreign function interface for Python2"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://cffi.readthedocs.io/"
|
|
license="MIT"
|
|
distfiles="${PYPI_SITE}/c/cffi/cffi-${version}.tar.gz"
|
|
checksum=c321bd46faa7847261b89c0469569530cad5a41976bb6dba8202c0159f476568
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3.4-cffi_package() {
|
|
depends="python3.4-pycparser"
|
|
pycompile_version="3.4"
|
|
pycompile_module="cffi"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3.4
|
|
vlicense LICENSE
|
|
}
|
|
}
|