blob: 1ccc591989fb300c3558f58408009b1c9d398f2e (
plain)
1 # Description: Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.
2 # URL: https://developers.google.com/protocol-buffers/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: zlib
5
6 name=protobuf
7 version=3.19.4
8 release=1
9 source=(https://github.com/protocolbuffers/$name/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 rm -rf gmock
15 install -d gmock/gtest
16
17 ./autogen.sh
18 ./configure --prefix=/usr
19
20 make
21 make DESTDIR=$PKG install
22 }
|