mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
7cc7f7ac54
- Remove superfluous function overrides and use makeopts instead - Remove superfluous installopts - Use run rather than cd'ing manually - Ensure empty line between functions
15 lines
414 B
Bash
Executable file
15 lines
414 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-1.6/jq-1.6.tar.gz jq-1.6.tar.gz"
|
|
makeopts="LDFLAGS=-all-static"
|
|
|
|
pre_configure() {
|
|
pushd $workdir/modules/oniguruma
|
|
autoreconf -fi
|
|
rm config.sub
|
|
cp ../../config/config.sub config.sub
|
|
popd
|
|
}
|