1
0
forked from ports/opt

yajl: initial release

This commit is contained in:
Juergen Daubert 2020-11-28 17:15:02 +00:00
parent 7059e6fe2a
commit f7d98274a1
3 changed files with 43 additions and 0 deletions

19
yajl/.footprint Normal file
View File

@ -0,0 +1,19 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/json_reformat
-rwxr-xr-x root/root usr/bin/json_verify
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/yajl/
-rw-r--r-- root/root usr/include/yajl/yajl_common.h
-rw-r--r-- root/root usr/include/yajl/yajl_gen.h
-rw-r--r-- root/root usr/include/yajl/yajl_parse.h
-rw-r--r-- root/root usr/include/yajl/yajl_tree.h
-rw-r--r-- root/root usr/include/yajl/yajl_version.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libyajl.so -> libyajl.so.2
lrwxrwxrwx root/root usr/lib/libyajl.so.2 -> libyajl.so.2.1.0
-rwxr-xr-x root/root usr/lib/libyajl.so.2.1.0
-rw-r--r-- root/root usr/lib/libyajl_s.a
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/pkgconfig/
-rw-r--r-- root/root usr/share/pkgconfig/yajl.pc

5
yajl/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/VxVrW7j7Fa7IHJYJMEeE+h2pRY0SbeOG+wOPUZwkt51WUt7Ho8U3pJEgAhWyXJFXGMGfRMtp0is1MCH53mNbwo=
SHA256 (Pkgfile) = f78b4f40517454afbb7d64200f125ade3714f0a0764762492ed0e028dc62ab24
SHA256 (.footprint) = a12a3cd23e0ffa9ef413dd7d8d801472c0b67d9f53dae0d996713ea0eaca8686
SHA256 (yajl-2.1.0.tar.gz) = 3fb73364a5a30efe615046d07e6db9d09fd2b41c763c5f7d3bfb121cd5c5ac5a

19
yajl/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Yet Another JSON Library
# URL: http://lloyd.github.com/yajl/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: cmake
name=yajl
version=2.1.0
release=1
source=(https://github.com/lloyd/$name/archive/$version/$name-$version.tar.gz)
build() {
cmake -S $name-$version -B build \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D CMAKE_INSTALL_PREFIX=/usr \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}