mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-11 17:00:37 +00:00
37f837bde7
Let's just use $version everywhere (we already do this for most ports).
15 lines
435 B
Bash
Executable file
15 lines
435 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=jq
|
|
version=1.6
|
|
useconfigure=true
|
|
configopts="--with-oniguruma=builtin --disable-maintainer-mode"
|
|
files="https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz jq-${version}.tar.gz"
|
|
makeopts="LDFLAGS=-all-static"
|
|
|
|
pre_configure() {
|
|
pushd $workdir/modules/oniguruma
|
|
autoreconf -fi
|
|
rm config.sub
|
|
cp ../../config/config.sub config.sub
|
|
popd
|
|
}
|