mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-25 14:24:18 +08:00
18 lines
476 B
TOML
18 lines
476 B
TOML
#TODO not compiled or tested
|
|
[source]
|
|
git = "https://github.com/mfat/sshpilot"
|
|
rev = "v4.3.8"
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
mkdir -pv "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot-dir
|
|
cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/usr/bin/ssh-pilot-dir"
|
|
echo "#!/usr/bin/env sh \n python3 /usr/bin/ssh-pilot-dir/run.py" > "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot
|
|
chmod a+x "${COOKBOOK_STAGE}"/usr/bin/ssh-pilot
|
|
"""
|
|
[package]
|
|
dependencies = [
|
|
"gtk4",
|
|
"libadwaita",
|
|
]
|