summaryrefslogtreecommitdiff
path: root/jq
diff options
context:
space:
mode:
authorThomas Penteker <tek@serverop.de>2019-01-17 00:31:04 +0100
committerThomas Penteker <tek@serverop.de>2019-01-17 00:31:04 +0100
commit542c78372cddeb35f51ae3cb1e8092886caaec24 (patch)
tree597b1a94f59be636d4d71f967179a8ce2ffd968b /jq
parent3d4dad7b92435c4a3828999dfb1c54b402b7bc50 (diff)
downloadcontrib-542c78372cddeb35f51ae3cb1e8092886caaec24.tar.gz
contrib-542c78372cddeb35f51ae3cb1e8092886caaec24.tar.xz
jq: initial import
Diffstat (limited to 'jq')
-rw-r--r--jq/.footprint27
-rw-r--r--jq/.signature5
-rw-r--r--jq/Pkgfile24
3 files changed, 56 insertions, 0 deletions
diff --git a/jq/.footprint b/jq/.footprint
new file mode 100644
index 000000000..63817e87d
--- /dev/null
+++ b/jq/.footprint
@@ -0,0 +1,27 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/jq
+-rwxr-xr-x root/root usr/bin/onig-config
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/jq.h
+-rw-r--r-- root/root usr/include/jv.h
+-rw-r--r-- root/root usr/include/oniggnu.h
+-rw-r--r-- root/root usr/include/onigposix.h
+-rw-r--r-- root/root usr/include/oniguruma.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libjq.a
+-rwxr-xr-x root/root usr/lib/libjq.la
+lrwxrwxrwx root/root usr/lib/libjq.so -> libjq.so.1.0.4
+lrwxrwxrwx root/root usr/lib/libjq.so.1 -> libjq.so.1.0.4
+-rwxr-xr-x root/root usr/lib/libjq.so.1.0.4
+-rw-r--r-- root/root usr/lib/libonig.a
+-rwxr-xr-x root/root usr/lib/libonig.la
+lrwxrwxrwx root/root usr/lib/libonig.so -> libonig.so.4.0.0
+lrwxrwxrwx root/root usr/lib/libonig.so.4 -> libonig.so.4.0.0
+-rwxr-xr-x root/root usr/lib/libonig.so.4.0.0
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/oniguruma.pc
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/jq.1.gz
diff --git a/jq/.signature b/jq/.signature
new file mode 100644
index 000000000..ea1973294
--- /dev/null
+++ b/jq/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/contrib.pub
+RWSagIOpLGJF31Qe6MAvLbd5V+neQCrUSaWH8bGHRyb9he74v64zEnuizRdg3Y9lT3xZpRDJ6gEoNzeoH4xmlOG+dM8kOV0edww=
+SHA256 (Pkgfile) = 8c3c611f2e9f5bf31eb9842a64a9f4b90768e68dbf8c9af56cf2280cf5f009ad
+SHA256 (.footprint) = 7a08ca1a12e1920ea0309620e381e7116fdc72e51b041c6c628a165a2b362668
+SHA256 (jq-1.6.tar.gz) = 5de8c8e29aaa3fb9cc6b47bb27299f271354ebb72514e3accadc7d38b5bbaa72
diff --git a/jq/Pkgfile b/jq/Pkgfile
new file mode 100644
index 000000000..f7d8dc979
--- /dev/null
+++ b/jq/Pkgfile
@@ -0,0 +1,24 @@
+# Description: Lightweight and flexible command-line JSON processor
+# URL: https://stedolan.github.io/jq/
+# Maintainer: Thomas Penteker, tek at serverop dot de
+# Depends on:
+
+name=jq
+version=1.6
+release=1
+source=(https://github.com/stedolan/jq/releases/download/jq-$version/jq-$version.tar.gz)
+
+build() {
+ cd $name-$version
+
+ autoreconf -i modules/oniguruma
+
+ ./configure --prefix=/usr \
+ --disable-maintainer-mode \
+ --with-oniguruma=builtin
+
+ make
+ make DESTDIR=$PKG install
+
+ rm -r $PKG/usr/share/doc
+}

Generated by cgit