1
0
forked from ports/contrib

22 lines
480 B
Plaintext
Raw Normal View History

2016-08-20 17:17:22 +10:00
# Description: Protocol Buffers implementation in C.
# URL: https://github.com/protobuf-c/protobuf-c
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: protobuf
name=protobuf-c
2019-03-12 00:03:04 +11:00
version=1.3.1
2016-08-20 17:17:22 +10:00
release=1
2019-03-12 00:03:04 +11:00
source=(https://github.com/protobuf-c/protobuf-c/releases/download/v$version/$name-$version.tar.gz
invalid-namespace.patch)
2016-08-20 17:17:22 +10:00
build() {
cd $name-$version
2019-03-12 00:03:04 +11:00
patch -p1 -i $SRC/invalid-namespace.patch
2016-08-20 17:17:22 +10:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}