mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-07 20:18:51 +08:00
15 lines
349 B
TOML
15 lines
349 B
TOML
#TODO probably wrong script, see https://github.com/wxWidgets/wxWidgets/blob/master/docs/gtk/install.md
|
|
[source]
|
|
tar = "https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.4/wxWidgets-3.2.4.tar.bz2"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"gtk3",
|
|
]
|
|
script = """
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--with-gtk
|
|
)
|
|
cookbook_configure
|
|
"""
|