void-packages/srcpkgs/python-lz4/template
2015-10-23 21:05:11 +02:00

33 lines
794 B
Bash

# Template file for 'python-lz4'
pkgname=python-lz4
version=0.7.0
revision=1
wrksrc=lz4-${version}
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-setuptools python3.4-setuptools"
makedepends="python-devel python3.4-devel"
short_desc="LZ4 bindings for Python2"
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
license="3-clause-BSD"
homepage="https://github.com/steeve/python-lz4"
distfiles="${PYPI_SITE}/l/lz4/lz4-${version}.tar.gz"
checksum=cd225744298568fd217577fc14a326a24835412374dadb5060db48f1af43eb48
pre_build() {
sed '/nose/ d' -i setup.py
sed -n 2,27p src/lz4.c > LICENSE
}
post_install() {
vlicense LICENSE
}
python3.4-lz4_package() {
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
vlicense LICENSE
}
}