mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-28 15:48:45 +08:00
20 lines
521 B
TOML
20 lines
521 B
TOML
#TODO Compiling, server crashes in page fault
|
|
[source]
|
|
git = "https://github.com/valkey-io/valkey"
|
|
rev = "a47e8fa1505578d78cef5c5e11da0972c3dae560" # 8.1.3
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"openssl1"
|
|
]
|
|
|
|
script = """
|
|
rsync -av --delete "${COOKBOOK_SOURCE}"/* ./
|
|
${COOKBOOK_MAKE} MALLOC=libc BUILD_TLS=yes \
|
|
WARN="-Wall -W -Wno-missing-field-initializers" \
|
|
WARNINGS="-Wall -W -Wno-missing-field-initializers" \
|
|
AR="${TARGET}-gcc-ar"
|
|
${COOKBOOK_MAKE} install PREFIX="${COOKBOOK_STAGE}"/usr
|
|
"""
|