summaryrefslogtreecommitdiff
path: root/jq/Pkgfile
blob: 0468a088d3d3934bbf565b861bbb97db4c6fbdd2 (plain)
    1 # Description: Lightweight and flexible command-line JSON processor
    2 # URL: https://stedolan.github.io/jq/
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Optional: oniguruma
    5 
    6 name=jq
    7 version=1.6
    8 release=2
    9 source=(https://github.com/stedolan/jq/releases/download/jq-$version/jq-$version.tar.gz)
   10 
   11 build() {
   12   cd $name-$version
   13 
   14   # never use bundled oniguruma for regex support
   15   sed -i '242,245d;248,250d;256,267d' configure.ac
   16   autoreconf -i
   17 
   18   ./configure --prefix=/usr \
   19     --with-oniguruma=/usr
   20 
   21   make
   22   make DESTDIR=$PKG install
   23 
   24   rm -r $PKG/usr/share/doc
   25 }

Generated by cgit