blob: 70327cb99aead8c9c3af710a0c8d6a2aada8e80f (
plain)
1 # Description: Protocol Buffers implementation in C.
2 # URL: https://github.com/protobuf-c/protobuf-c
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: protobuf
5
6 name=protobuf-c
7 version=1.3.3
8 release=1
9 source=(https://github.com/protobuf-c/protobuf-c/releases/download/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|