contrib/protobuf-c/Pkgfile

20 lines
455 B
Plaintext

# Description: Protocol Buffers implementation in C
# URL: https://github.com/protobuf-c/protobuf-c
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: protobuf
name=protobuf-c
version=1.5.0
release=1
source=(https://github.com/protobuf-c/protobuf-c/releases/download/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-static \
--disable-nls
make
make DESTDIR=$PKG install
}