mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
28 lines
580 B
TOML
28 lines
580 B
TOML
[source]
|
|
tar = "https://download.gnome.org/sources/glib/2.87/glib-2.87.0.tar.xz"
|
|
blake3 = "26b77ae24bc02f85d1c6742fe601167b056085f117cda70da7b805cefa6195e9"
|
|
patches = [
|
|
"redox.patch",
|
|
]
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"gettext",
|
|
"libffi",
|
|
"libiconv",
|
|
"libinotify-stub",
|
|
"pcre2",
|
|
"zlib",
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
export CFLAGS="$CFLAGS -I$COOKBOOK_SYSROOT/include/inotify"
|
|
export LDFLAGS="$LDFLAGS -linotify"
|
|
cookbook_meson \
|
|
-Ddefault_library=shared \
|
|
-Dxattr=false \
|
|
-Dtests=false \
|
|
-Dfile_monitor_backend=inotify
|
|
"""
|