mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-09 13:08:47 +08:00
21 lines
514 B
TOML
21 lines
514 B
TOML
#TODO compiled but not tested
|
|
[source]
|
|
git = "https://github.com/valkey-io/valkey"
|
|
shallow_clone = true
|
|
rev = "9.0.3"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"openssl3"
|
|
]
|
|
|
|
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" CFLAGS="${CFLAGS} ${CPPFLAGS}"
|
|
${COOKBOOK_MAKE} install PREFIX="${COOKBOOK_STAGE}"/usr
|
|
"""
|