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

37 lines
927 B
Bash

# Template file for 'python-lz4'
pkgname=python-lz4
version=0.11.1
revision=1
wrksrc="lz4-${version}"
build_style=python-module
pycompile_module="lz4"
hostmakedepends="pkg-config python-setuptools python3-setuptools"
makedepends="python-devel python3-devel lz4-devel"
short_desc="LZ4 bindings for Python2"
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
license="3-clause-BSD"
homepage="https://github.com/python-lz4/python-lz4"
distfiles="${PYPI_SITE}/l/lz4/lz4-${version}.tar.gz"
checksum=440bbb039e15c09b049c0a8c1294978341d3fac943b83e04ff3f9e3b7ec0058b
pre_build() {
sed -i setup.py \
-e '/setup_requires/d' \
-e '/use_scm_version/,+2d' \
-e "/name=/ a\
version='${version}',"
sed -n 2,29p lz4/_version.c >LICENSE
}
post_install() {
vlicense LICENSE
}
python3-lz4_package() {
pycompile_module="lz4"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE
}
}