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
Notes:
sideshowbarker
2024-07-17 11:30:54 +09:00
Author: https://github.com/EWouters Commit: https://github.com/SerenityOS/serenity/commit/d86a6d2e8c Pull-request: https://github.com/SerenityOS/serenity/pull/20901 Reviewed-by: https://github.com/gmta ✅ Reviewed-by: https://github.com/timschumi
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/ |
|
||||
| [`freetype`](freetype/) | FreeType | 2.13.2 | https://www.freetype.org/ |
|
||||
| [`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/ |
|
||||
| [`gdb`](gdb/) | GNU Project Debugger | 11.2 | https://sourceware.org/gdb |
|
||||
| [`gemrb`](gemrb/) | GemRB | 0.9.1 | https://gemrb.org/ |
|
||||
|
|
|
@ -1,7 +1,14 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port='gawk'
|
||||
version='5.2.1'
|
||||
version='5.2.2'
|
||||
useconfigure='true'
|
||||
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
Reference in a new issue