contrib/protobuf-c/Pkgfile

19 lines
411 B
Plaintext
Raw Normal View History

2016-08-20 09:17:22 +02: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
2021-05-29 07:34:39 +02:00
version=1.4.0
2016-08-20 09:17:22 +02:00
release=1
2019-12-07 14:01:28 +01:00
source=(https://github.com/protobuf-c/protobuf-c/releases/download/v$version/$name-$version.tar.gz)
2016-08-20 09:17:22 +02:00
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}