mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-28 07:44:18 +08:00
15 lines
437 B
TOML
15 lines
437 B
TOML
#TODO not compiled or tested
|
|
# build instructions - https://www.cgsecurity.org/wiki/TestDisk_Compilation
|
|
# add optional libraries to expand the features - https://www.cgsecurity.org/wiki/TestDisk_Compilation#Libraries
|
|
[source]
|
|
tar = "https://www.cgsecurity.org/testdisk-7.2.tar.bz2"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"ncurses",
|
|
]
|
|
script = """
|
|
export CPPFLAGS="-I${COOKBOOK_SYSROOT}/include/ncurses"
|
|
cookbook_configure
|
|
"""
|