mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 20:04:19 +08:00
18 lines
331 B
TOML
18 lines
331 B
TOML
#TODO very basic makefiles are tested to work but needs more testing
|
|
[source]
|
|
tar = "http://ftp.gnu.org/gnu/make/make-4.4.tar.gz"
|
|
patches = [
|
|
"redox.patch"
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
autotools_recursive_regenerate
|
|
"""
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
DYNAMIC_INIT
|
|
cp -rp "$COOKBOOK_SOURCE/." ./
|
|
cookbook_configure
|
|
""" |