35 lines
1 KiB
Bash
35 lines
1 KiB
Bash
# Template file for 'grpc'
|
|
pkgname=grpc
|
|
version=1.25.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=ffbe61269160ea745e487f79b0fd06b6edd3d50c6d9123f053b5634737cf2f69
|
|
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
|
|
}
|
|
}
|