mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
19 lines
385 B
TOML
19 lines
385 B
TOML
[source]
|
|
git = "https://github.com/visit1985/mdp.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"ncursesw",
|
|
"terminfo"
|
|
]
|
|
script = """
|
|
rsync -av --delete --exclude='.git' "${COOKBOOK_SOURCE}/" ./
|
|
|
|
export CFLAGS="${CFLAGS} -I${COOKBOOK_SYSROOT}/include/ncursesw"
|
|
|
|
"${COOKBOOK_MAKE}" -j"$(${NPROC})"
|
|
|
|
# Install
|
|
"${REDOX_MAKE}" DESTDIR="${COOKBOOK_STAGE}" PREFIX="" install
|
|
""" |