mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
Ports/gawk: Update gawk to version 5.2.2
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.
This commit is contained in:
parent
c0eeea0a72
commit
d86a6d2e8c
2 changed files with 10 additions and 3 deletions
|
@ -88,7 +88,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
||||||
| [`freedink`](freedink/) | FreeDink | 109.6 | https://www.gnu.org/software/freedink/ |
|
| [`freedink`](freedink/) | FreeDink | 109.6 | https://www.gnu.org/software/freedink/ |
|
||||||
| [`freetype`](freetype/) | FreeType | 2.13.2 | https://www.freetype.org/ |
|
| [`freetype`](freetype/) | FreeType | 2.13.2 | https://www.freetype.org/ |
|
||||||
| [`frotz`](frotz/) | Frotz | 2.54 | https://gitlab.com/DavidGriffith/frotz |
|
| [`frotz`](frotz/) | Frotz | 2.54 | https://gitlab.com/DavidGriffith/frotz |
|
||||||
| [`gawk`](gawk/) | GNU awk | 5.2.1 | https://www.gnu.org/software/gawk/ |
|
| [`gawk`](gawk/) | GNU awk | 5.2.2 | https://www.gnu.org/software/gawk/ |
|
||||||
| [`gcc`](gcc/) | GNU Compiler Collection | 13.2.0 | https://gcc.gnu.org/ |
|
| [`gcc`](gcc/) | GNU Compiler Collection | 13.2.0 | https://gcc.gnu.org/ |
|
||||||
| [`gdb`](gdb/) | GNU Project Debugger | 11.2 | https://sourceware.org/gdb |
|
| [`gdb`](gdb/) | GNU Project Debugger | 11.2 | https://sourceware.org/gdb |
|
||||||
| [`gemrb`](gemrb/) | GemRB | 0.9.1 | https://gemrb.org/ |
|
| [`gemrb`](gemrb/) | GemRB | 0.9.1 | https://gemrb.org/ |
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
#!/usr/bin/env -S bash ../.port_include.sh
|
#!/usr/bin/env -S bash ../.port_include.sh
|
||||||
port='gawk'
|
port='gawk'
|
||||||
version='5.2.1'
|
version='5.2.2'
|
||||||
useconfigure='true'
|
useconfigure='true'
|
||||||
files=(
|
files=(
|
||||||
"https://ftpmirror.gnu.org/gnu/gawk/gawk-${version}.tar.gz#529e7c8c6acf21ff3a6183f4d763c632810908989c24675c77995d51ac37b79c"
|
"https://ftpmirror.gnu.org/gnu/gawk/gawk-${version}.tar.gz#945aef7ccff101f20b22a10802bc005e994ab2b8ea3e724cc1a197c62f41f650"
|
||||||
|
)
|
||||||
|
depends=(
|
||||||
|
'gmp'
|
||||||
|
'mpfr'
|
||||||
|
)
|
||||||
|
configopts=(
|
||||||
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue