36 lines
988 B
Bash
36 lines
988 B
Bash
# Template file for 'protobuf-c'
|
|
pkgname=protobuf-c
|
|
version=1.3.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config protobuf"
|
|
makedepends="protobuf-devel boost-devel"
|
|
short_desc="C implementation of the Google Protocol Buffers"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/protobuf-c/protobuf-c"
|
|
distfiles="${homepage}/releases/download/v${version}/protobuf-c-${version}.tar.gz"
|
|
checksum=51472d3a191d6d7b425e32b612e477c06f73fe23e07f6a6a839b11808e9d2267
|
|
|
|
# buildprocess calls compiler while building, disable it on cross build
|
|
build_options="protoc"
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
build_options_default="protoc"
|
|
fi
|
|
configure_args="$(vopt_enable protoc)"
|
|
|
|
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"
|
|
}
|
|
}
|