mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-07 03:58:41 +08:00
13 lines
515 B
TOML
13 lines
515 B
TOML
#TODO missing cross-compilation variables and a command to move the executable to the package
|
|
#TODO determine minimum dependencies from mach log
|
|
# build instructions - https://developer.thunderbird.net/thunderbird-development/building-thunderbird
|
|
[source]
|
|
tar = "https://archive.mozilla.org/pub/thunderbird/releases/140.7.0esr/source/thunderbird-140.7.0esr.source.tar.xz"
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
mkdir -pv "${COOKBOOK_STAGE}"/usr/bin
|
|
export MOZCONFIG="{COOKBOOK_RECIPE}/mozconfig"
|
|
./mach build
|
|
"""
|