31 lines
922 B
Bash
31 lines
922 B
Bash
# Template file for 'protobuf-c'
|
|
pkgname=protobuf-c
|
|
version=1.3.0
|
|
revision=4
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config protobuf"
|
|
makedepends="protobuf-devel"
|
|
short_desc="C implementation of the Google Protocol Buffers"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="BSD"
|
|
homepage="https://github.com/protobuf-c/protobuf-c"
|
|
distfiles="$homepage/releases/download/v$version/protobuf-c-$version.tar.gz"
|
|
checksum=5dc9ad7a9b889cf7c8ff6bf72215f1874a90260f60ad4f88acf21bb15d2752a1
|
|
# 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)"
|
|
|
|
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"
|
|
}
|
|
}
|