void-packages/srcpkgs/python-protobuf/template
maxice8 a962870286 python-protobuf: update to 3.5.2.
Closes: #12209 [via git-merge-pr]
2018-03-08 00:13:49 -08:00

32 lines
928 B
Bash

# Template file for 'python-protobuf'
pkgname=python-protobuf
version=3.5.2
revision=1
noarch=yes
wrksrc="protobuf-${version}"
build_style=python-module
pycompile_module="google/protobuf"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools python-six"
short_desc="Python2 bindings for Google Protocol Buffers"
maintainer="Charles E. Lehner <cel@celehner.com>"
homepage="https://developers.google.com/protocol-buffers/"
license="BSD-3-Clause"
distfiles="${PYPI_SITE}/p/protobuf/protobuf-${version}.tar.gz"
checksum=09879a295fd7234e523b62066223b128c5a8a88f682e3aff62fb115e4a0d8be0
post_install() {
sed -n 1,29p google/protobuf/__init__.py >LICENSE
vlicense LICENSE
}
python3-protobuf_package() {
noarch=yes
pycompile_module="google/protobuf"
depends="python3-setuptools python3-six"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE
}
}