blob: 0b87b5c514c5c23ad7453b919600834b06649f65 (
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.4.1
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 }
|