mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-26 23:04:19 +08:00
16 lines
275 B
TOML
16 lines
275 B
TOML
#TODO make dependencies work
|
|
[source]
|
|
tar = "https://bitcoincore.org/bin/bitcoin-core-27.0/bitcoin-27.0.tar.gz"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"boost",
|
|
"libevent",
|
|
]
|
|
script = """
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--disable-wallet
|
|
)
|
|
cookbook_configure
|
|
"""
|