void-packages/srcpkgs/python-bitarray/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

29 lines
827 B
Bash

# Template file for 'python-bitarray'
pkgname=python-bitarray
version=0.8.1
revision=4
wrksrc="bitarray-${version}"
pycompile_module="bitarray"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
makedepends="python-devel python3-devel libcurl-devel"
short_desc="Python2 module for efficiently representing arrays of booleans"
maintainer="Toyam Cox <Vaelatern@gmail.com>"
license="PSF-2"
homepage="https://github.com/ilanschnell/bitarray"
distfiles="https://github.com/ilanschnell/bitarray/archive/${version}.tar.gz"
checksum=428212974285eacf9f3b4a6fb60f365d727ab6e30b98de4eb2f238a7b0dd4b50
post_install() {
vlicense LICENSE
}
python3-bitarray_package() {
pycompile_module="bitarray"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE
}
}