opt/protobuf/Pkgfile
2020-10-09 22:21:59 +11:00

23 lines
503 B
Plaintext

# Description: Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.
# URL: https://developers.google.com/protocol-buffers/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: zlib
name=protobuf
version=3.13.0
release=1
source=(https://github.com/google/$name/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
rm -rf gmock
install -d gmock/gtest
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}