mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 13:54:19 +08:00
31 lines
557 B
TOML
31 lines
557 B
TOML
[source]
|
|
tar = "https://ftp.gnu.org/gnu/ncurses/ncurses-6.4.tar.gz"
|
|
blake3 = "0d1c9fdf53c0ca4bd66ba707d49a079d2dd6f5a960cdec74a56e29952c4ffe73"
|
|
patches = [
|
|
"redox.patch"
|
|
]
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
DYNAMIC_INIT
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--disable-db-install
|
|
--disable-stripping
|
|
--without-ada
|
|
--without-manpages
|
|
--without-tests
|
|
cf_cv_func_mkstemp=yes
|
|
)
|
|
if [ "${COOKBOOK_DYNAMIC}" == "1" ]
|
|
then
|
|
COOKBOOK_CONFIGURE_FLAGS+=(--with-shared)
|
|
fi
|
|
cookbook_configure
|
|
"""
|
|
|
|
[package]
|
|
dependencies = [
|
|
"terminfo",
|
|
]
|