mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-30 16:48:45 +08:00
23 lines
366 B
TOML
23 lines
366 B
TOML
[source]
|
|
tar = "https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-2.3.0.tar.bz2"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"freetype",
|
|
"gettext",
|
|
"glib",
|
|
"libiconv",
|
|
"libpng",
|
|
"pcre",
|
|
"zlib"
|
|
]
|
|
script = """
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--with-glib=yes
|
|
--with-freetype=yes
|
|
--with-icu=no
|
|
)
|
|
cookbook_configure
|
|
"""
|