void-packages/srcpkgs/grpc/template
2019-12-19 11:27:35 +01:00

35 lines
1 KiB
Bash

# Template file for 'grpc'
pkgname=grpc
version=1.26.0
revision=1
build_style=gnu-makefile
make_build_args="prefix=\$(DESTDIR)/usr AROPTS=rc LD=\$(CC)"
make_install_args="prefix=\$(DESTDIR)/usr"
hostmakedepends="protobuf"
makedepends="zlib-devel c-ares-devel libressl-devel libprotoc-devel
protobuf-devel gperftools-devel"
short_desc="High performance, open source, general RPC framework"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="Apache-2.0"
homepage="https://github.com/grpc/grpc"
distfiles="https://github.com/${pkgname}/${pkgname}/archive/v${version}/${pkgname}-${version}.tar.gz"
checksum=2fcb7f1ab160d6fd3aaade64520be3e5446fc4c6fa7ba6581afdc4e26094bd81
nocross=yes
post_extract() {
sed -r 's/-Werror//g;/ldconfig/d;s/ strip-(static|shared)_c(xx)? / /' -i Makefile
}
post_install() {
vlicense NOTICE.txt
}
grpc-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
vmove usr/lib/*.a
vmove usr/lib/pkgconfig
}
}