protobuf-c: initial import

This commit is contained in:
Danny Rawlins 2016-08-20 17:17:22 +10:00
parent 81a1a9a44b
commit 60245a2362
3 changed files with 37 additions and 0 deletions

17
protobuf-c/.footprint Normal file
View File

@ -0,0 +1,17 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/protoc-c
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/google/
drwxr-xr-x root/root usr/include/google/protobuf-c/
lrwxrwxrwx root/root usr/include/google/protobuf-c/protobuf-c.h -> ../../protobuf-c/protobuf-c.h
drwxr-xr-x root/root usr/include/protobuf-c/
-rw-r--r-- root/root usr/include/protobuf-c/protobuf-c.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libprotobuf-c.a
-rwxr-xr-x root/root usr/lib/libprotobuf-c.la
lrwxrwxrwx root/root usr/lib/libprotobuf-c.so -> libprotobuf-c.so.1.0.0
lrwxrwxrwx root/root usr/lib/libprotobuf-c.so.1 -> libprotobuf-c.so.1.0.0
-rwxr-xr-x root/root usr/lib/libprotobuf-c.so.1.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libprotobuf-c.pc

1
protobuf-c/.md5sum Normal file
View File

@ -0,0 +1 @@
e544249c329391fff512c3874895cfbe protobuf-c-1.2.1.tar.gz

19
protobuf-c/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Protocol Buffers implementation in C.
# URL: https://github.com/protobuf-c/protobuf-c
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Danny Rawlins, crux at romster dot me
# Depends on: protobuf
name=protobuf-c
version=1.2.1
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
make
make DESTDIR=$PKG install
}