38 lines
956 B
Bash
38 lines
956 B
Bash
# Template file for 'python-lz4'
|
|
pkgname=python-lz4
|
|
version=2.0.2
|
|
revision=1
|
|
wrksrc="lz4-${version}"
|
|
build_style=python-module
|
|
pycompile_module="lz4"
|
|
hostmakedepends="pkg-config python-setuptools python3-setuptools
|
|
python-pkgconfig python3-pkgconfig"
|
|
makedepends="python-devel python3-devel liblz4-devel"
|
|
depends="python-future"
|
|
short_desc="LZ4 bindings for Python2"
|
|
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/python-lz4/python-lz4"
|
|
distfiles="${PYPI_SITE}/l/lz4/lz4-${version}.tar.gz"
|
|
checksum=1b039a3ca91945062503c0c934fe18131d4997f7becfa3020bf93c56a1c4a0e8
|
|
|
|
pre_build() {
|
|
sed -i setup.py \
|
|
-e '/setup_requires=/,+4d' \
|
|
-e '/use_scm_version=/,+2d' \
|
|
-e "/name=/ a\
|
|
version='${version}',"
|
|
}
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-lz4_package() {
|
|
pycompile_module="lz4"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|