contrib/jq/Pkgfile

22 lines
457 B
Plaintext
Raw Normal View History

2019-01-17 00:31:04 +01:00
# Description: Lightweight and flexible command-line JSON processor
2021-02-24 11:39:01 +01:00
# URL: https://stedolan.github.io/jq/
# Maintainer: Tim Biermann, tbier at posteo dot de
2023-09-07 17:06:19 +02:00
# Depends on: oniguruma
2019-01-17 00:31:04 +01:00
name=jq
2023-12-14 00:07:42 +01:00
version=1.7.1
2023-09-07 17:06:19 +02:00
release=1
2019-01-17 00:31:04 +01:00
source=(https://github.com/stedolan/jq/releases/download/jq-$version/jq-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
2021-02-24 11:39:01 +01:00
--with-oniguruma=/usr
2019-01-17 00:31:04 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}