mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-23 05:14:18 +08:00
15 lines
292 B
TOML
15 lines
292 B
TOML
#TODO make dependencies work
|
|
[source]
|
|
tar = "https://www.thrysoee.dk/editline/libedit-20221030-3.1.tar.gz"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"ncurses",
|
|
"termcap",
|
|
"terminfo",
|
|
]
|
|
script = """
|
|
export CPPFLAGS="-I${COOKBOOK_SYSROOT}/include/ncurses"
|
|
cookbook_configure
|
|
"""
|