diff options
Diffstat (limited to 'repo/jq/jq.xibuild')
-rw-r--r-- | repo/jq/jq.xibuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/repo/jq/jq.xibuild b/repo/jq/jq.xibuild new file mode 100644 index 0000000..2c1b75c --- /dev/null +++ b/repo/jq/jq.xibuild @@ -0,0 +1,32 @@ +#!/bin/sh + +NAME="jq" +DESC="A lightweight and flexible command-line JSON processor" + +MAKEDEPS="automake autoconf libtool oniguruma" + +PKG_VER=1.6 +SOURCE="https://github.com/stedolan/jq/archive/jq-$PKG_VER.tar.gz" + +prepare() { + autoreconf -fi +} + +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --disable-docs + make +} + +check() { + make check +} + +package() { + make DESTDIR="$PKG_DEST" prefix=/usr install +} + |