mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
12 lines
326 B
TOML
12 lines
326 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/ca-certificates.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
mkdir -pv "${COOKBOOK_STAGE}/etc/ssl"
|
|
cp -rv "${COOKBOOK_SOURCE}/certs" "${COOKBOOK_STAGE}/etc/ssl/certs"
|
|
#TODO: remove deprecated location after all recipes are fixed
|
|
ln -s etc/ssl "${COOKBOOK_STAGE}/ssl"
|
|
"""
|