mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-30 16:48:45 +08:00
15 lines
495 B
TOML
15 lines
495 B
TOML
#TODO missing cross-compilation variables and a command to move the executable to the package
|
|
# build instructions - https://developer.thunderbird.net/thunderbird-development/building-thunderbird
|
|
[source]
|
|
tar = "https://archive.mozilla.org/pub/thunderbird/releases/128.0.1esr/source/thunderbird-128.0.1esr.source.tar.xz"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"library1",
|
|
]
|
|
script = """
|
|
mkdir -pv "${COOKBOOK_STAGE}"/usr
|
|
export MOZCONFIG="{COOKBOOK_RECIPE}/mozconfig"
|
|
./mach build
|
|
"""
|