opt/protobuf/Pkgfile

23 lines
503 B
Plaintext
Raw Normal View History

2017-10-22 05:03:52 +02:00
# 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
2021-04-10 16:58:54 +02:00
version=3.15.8
2017-10-22 05:03:52 +02:00
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
}