blob: f2b35495752c45660d9d28bcd075129f82b6aae9 (
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.4.1
8 release=1
9 source=(https://github.com/google/$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 }
|