mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 11:54:17 +08:00
14 lines
355 B
TOML
14 lines
355 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/userutils.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
cookbook_cargo
|
|
cp -rv "${COOKBOOK_SOURCE}/res" "${COOKBOOK_STAGE}/etc"
|
|
ln -s id "${COOKBOOK_STAGE}/usr/bin/whoami"
|
|
chmod +s "${COOKBOOK_STAGE}/usr/bin/passwd"
|
|
chmod +s "${COOKBOOK_STAGE}/usr/bin/sudo"
|
|
chmod +s "${COOKBOOK_STAGE}/usr/bin/su"
|
|
"""
|