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

Ports/glib: Update glib to version 2.72.2

This commit is contained in:
EWouters 2022-06-03 15:40:33 +02:00 committed by Linus Groh
parent 810f363fc0
commit 9a692aaabc
2 changed files with 7 additions and 8 deletions

View file

@ -64,7 +64,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
| [`genemu`](genemu/) | Genesis / MegaDrive Emulator | e39f690 | https://github.com/rasky/genemu | | [`genemu`](genemu/) | Genesis / MegaDrive Emulator | e39f690 | https://github.com/rasky/genemu |
| [`gettext`](gettext/) | GNU gettext | 0.21 | https://www.gnu.org/software/gettext/ | | [`gettext`](gettext/) | GNU gettext | 0.21 | https://www.gnu.org/software/gettext/ |
| [`git`](git/) | Git | 2.36.1 | https://git-scm.com/ | | [`git`](git/) | Git | 2.36.1 | https://git-scm.com/ |
| [`glib`](glib/) | GLib | 2.72.1 | https://wiki.gnome.org/Projects/GLib | | [`glib`](glib/) | GLib | 2.72.2 | https://wiki.gnome.org/Projects/GLib |
| [`glm`](glm/) | OpenGL Mathematics (GLM) | 0.9.9.8 | https://github.com/g-truc/glm | | [`glm`](glm/) | OpenGL Mathematics (GLM) | 0.9.9.8 | https://github.com/g-truc/glm |
| [`gltron`](gltron/) | GLTron | 0.70 | http://gltron.org | | [`gltron`](gltron/) | GLTron | 0.70 | http://gltron.org |
| [`glu`](glu/) | Mesa GLU | 9.0.2 | https://gitlab.freedesktop.org/mesa/glu | | [`glu`](glu/) | Mesa GLU | 9.0.2 | https://gitlab.freedesktop.org/mesa/glu |

View file

@ -1,11 +1,11 @@
#!/usr/bin/env -S bash ../.port_include.sh #!/usr/bin/env -S bash ../.port_include.sh
port=glib port='glib'
version=2.72.1 version='2.72.2'
files="https://gitlab.gnome.org/GNOME/glib/-/archive/${version}/glib-${version}.tar.gz glib-${version}.tar.gz 256439eb4667cda778f12faa6c1726413153618336514d3633ac1e4404d627ea"
auth_type='sha256'
useconfigure='true'
configopts=("--cross-file" "../cross_file-${SERENITY_ARCH}.txt")
depends=("libiconv" "libffi" "zlib" "gettext" "pcre") depends=("libiconv" "libffi" "zlib" "gettext" "pcre")
useconfigure=true
configopts=("--cross-file" "../cross_file-$SERENITY_ARCH.txt")
files="https://gitlab.gnome.org/GNOME/glib/-/archive/${version}/glib-${version}.tar.gz glib-${version}.tar.gz 4a345987a9ee7709417f5a5c6f4eeec2497bc2a913f14c1b9bdc403409d5ffb7"
auth_type=sha256
configure() { configure() {
# TODO: Figure out why GCC doesn't autodetect that libgcc_s is needed. # TODO: Figure out why GCC doesn't autodetect that libgcc_s is needed.
@ -21,6 +21,5 @@ build() {
} }
install() { install() {
export DESTDIR=$SERENITY_BUILD_DIR/Root
run meson install -C _build run meson install -C _build
} }