void-packages/srcpkgs/protobuf-c/template
2020-05-23 05:53:32 +02:00

37 lines
1 KiB
Bash

# Template file for 'protobuf-c'
pkgname=protobuf-c
version=1.3.3
revision=3
build_style=gnu-configure
configure_args="$(vopt_enable protoc)"
hostmakedepends="pkg-config protobuf"
makedepends="protobuf-devel boost-devel $(vopt_if protoc libprotoc-devel)"
short_desc="C implementation of the Google Protocol Buffers"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="BSD-2-Clause"
homepage="https://github.com/protobuf-c/protobuf-c"
distfiles="${homepage}/releases/download/v${version}/protobuf-c-${version}.tar.gz"
checksum=22956606ef50c60de1fabc13a78fbc50830a0447d780467d3c519f84ad527e78
# buildprocess calls compiler while building, disable it on cross build
build_options="protoc"
desc_option_protoc="Build protoc-c compiler"
if [ -z "$CROSS_BUILD" ]; then
build_options_default="protoc"
fi
post_install() {
vlicense LICENSE
}
protobuf-c-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}