mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-04 02:28:45 +08:00
19 lines
442 B
TOML
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
|
|
"""
|