1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:07:34 +00:00

Ports/gettext: Update gettext to version 0.22

This also fixes the Clang build by setting the sysroot.
This commit is contained in:
EWouters 2023-09-01 19:33:03 +02:00 committed by Jelle Raaijmakers
parent d86a6d2e8c
commit 56a09e814d
2 changed files with 5 additions and 4 deletions

View file

@ -1,9 +1,9 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='gettext'
version='0.21.1'
version='0.22'
useconfigure='true'
files=(
"https://ftpmirror.gnu.org/gettext/gettext-${version}.tar.gz#e8c3650e1d8cee875c4f355642382c1df83058bd5a11ee8555c0cf276d646d45"
"https://ftpmirror.gnu.org/gettext/gettext-${version}.tar.gz#49f089be11b490170bbf09ed2f51e5f5177f55be4cc66504a5861820e0fb06ab"
)
depends=(
'libiconv'
@ -14,5 +14,6 @@ config_sub_paths=(
'libtextstyle/build-aux/config.sub'
)
configopts=(
'--disable-curses'
'--disable-curses'
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
)