mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 11:00:29 +00:00
d86a6d2e8c
This also adds gmp and mpfr as optional dependencies, and sets the sysroot to to allow gawk to find libgmp when building with Clang, and to make the results predictable regardless of the order the ports are installed in.
14 lines
324 B
Bash
Executable file
14 lines
324 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='gawk'
|
|
version='5.2.2'
|
|
useconfigure='true'
|
|
files=(
|
|
"https://ftpmirror.gnu.org/gnu/gawk/gawk-${version}.tar.gz#945aef7ccff101f20b22a10802bc005e994ab2b8ea3e724cc1a197c62f41f650"
|
|
)
|
|
depends=(
|
|
'gmp'
|
|
'mpfr'
|
|
)
|
|
configopts=(
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
|
)
|