blob: 89f557557916d9f1e57b6a651df89c80906f286b (
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 # Packager: Danny Rawlins, crux at romster dot me
5 # Depends on: protobuf
6
7 name=protobuf-c
8 version=1.3.0
9 release=1
10 source=(https://github.com/protobuf-c/protobuf-c/releases/download/v$version/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19 }
|