redox/recipes/wip/monitors/htop/recipe.toml
2024-07-12 07:55:42 +00:00

19 lines
442 B
TOML

#TODO compilation error
#TODO port to redox
#TODO make ncursesw work
# build instructions - https://github.com/htop-dev/htop#build-instructions
[source]
tar = "https://github.com/htop-dev/htop/releases/download/3.3.0/htop-3.3.0.tar.xz"
[build]
template = "custom"
dependencies = [
"ncurses",
]
script = """
export CPPFLAGS="-I${COOKBOOK_SYSROOT}/include/ncurses"
COOKBOOK_CONFIGURE_FLAGS+=(
--disable-unicode
)
cookbook_configure
"""