contrib/jq/Pkgfile
2021-02-24 10:39:01 +00:00

26 lines
571 B
Plaintext

# Description: Lightweight and flexible command-line JSON processor
# URL: https://stedolan.github.io/jq/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Optional: oniguruma
name=jq
version=1.6
release=2
source=(https://github.com/stedolan/jq/releases/download/jq-$version/jq-$version.tar.gz)
build() {
cd $name-$version
# never use bundled oniguruma for regex support
sed -i '242,245d;248,250d;256,267d' configure.ac
autoreconf -i
./configure --prefix=/usr \
--with-oniguruma=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}