protobuf-c: initial commit, version 1.5.0

This commit is contained in:
Tim Biermann 2024-03-02 15:49:42 +01:00
parent 856864403f
commit 6720bf4e22
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 42 additions and 0 deletions

18
protobuf-c/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/protoc-c -> protoc-gen-c
-rwxr-xr-x root/root usr/bin/protoc-gen-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
-rw-r--r-- root/root usr/include/protobuf-c/protobuf-c.proto
drwxr-xr-x root/root usr/lib/
-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

5
protobuf-c/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3xjw5DG+1kySrJW/orMOI8QaWtguA/pG8Dp28p+hartrgp+3vIJvYP0oqZwWnxzPR4bPyrbznYlQ0p5SbltI8QI=
SHA256 (Pkgfile) = 8d3007c15fc13a4931e345138311cab6360316382faa471f86f47b956e9135e3
SHA256 (.footprint) = ae17effa541665aeacadca62795aa7150ee172bc7d52f9048612e7bdb788f803
SHA256 (protobuf-c-1.5.0.tar.gz) = 7b404c63361ed35b3667aec75cc37b54298d56dd2bcf369de3373212cc06fd98

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: 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
}