1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lxd_ynh.git synced 2024-09-03 19:45:53 +02:00
lxd_ynh/manifest.toml

91 lines
2.5 KiB
TOML
Raw Normal View History

2024-02-01 12:15:36 +01:00
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
packaging_format = 2
id = "lxd"
name = "LXD"
description.en = "Offers a user experience similar to virtual machines but using Linux containers instead."
description.fr = "Offre une expérience utilisateur similaire aux machines virtuelles mais en utilisant des conteneurs Linux à la place."
2024-04-16 21:02:30 +02:00
version = "5.20~ynh2"
2024-02-01 12:15:36 +01:00
maintainers = ["kay0u"]
[upstream]
license = "Apache-2.0"
website = "https://linuxcontainers.org/lxd/"
demo = "https://linuxcontainers.org/lxd/try-it/"
admindoc = "https://linuxcontainers.org/lxd/docs/master/index.html"
code = "https://github.com/canonical/lxd"
2024-02-01 14:51:55 +01:00
cpe = "cpe:2.3:a:canonical:lxd"
2024-02-01 12:15:36 +01:00
[integration]
yunohost = ">= 4.3.0"
2024-02-01 14:51:55 +01:00
architectures = "all"
2024-02-01 12:15:36 +01:00
multi_instance = false
ldap = "not_relevant"
sso = "not_relevant"
2024-02-01 15:20:59 +01:00
disk = "500M"
ram.build = "600M"
ram.runtime = "500M"
2024-02-01 12:15:36 +01:00
[install]
[resources]
[resources.sources]
[resources.sources.go]
2024-05-08 08:12:54 +02:00
amd64.url = "https://go.dev/dl/go1.22.3.linux-amd64.tar.gz"
amd64.sha256 = "8920ea521bad8f6b7bc377b4824982e011c19af27df88a815e3586ea895f1b36"
i386.url = "https://go.dev/dl/go1.22.3.linux-386.tar.gz"
i386.sha256 = "fefba30bb0d3dd1909823ee38c9f1930c3dc5337a2ac4701c2277a329a386b57"
arm64.url = "https://go.dev/dl/go1.22.3.linux-arm64.tar.gz"
arm64.sha256 = "6c33e52a5b26e7aa021b94475587fce80043a727a54ceb0eee2f9fc160646434"
2024-02-01 12:15:36 +01:00
armhf.url = "https://go.dev/dl/go1.21.5.linux-armv6l.tar.gz"
armhf.sha256 = "837f4bf4e22fcdf920ffeaa4abf3d02d1314e03725431065f4d44c46a01b42fe"
[resources.sources.lxd]
2024-05-13 17:45:26 +02:00
url = "https://github.com/canonical/lxd/archive/refs/tags/lxd-5.21.1.tar.gz"
sha256 = "3619f6ab718453aa47a6aad93f74b5cf55f5d329749975accb3da244c4cbae34"
2024-02-01 12:15:36 +01:00
autoupdate.strategy = "latest_github_release"
[resources.system_user]
[resources.install_dir]
[resources.permissions]
[resources.apt]
packages = [
2024-02-06 20:54:56 +01:00
# According to https://documentation.ubuntu.com/lxd/en/latest/installing/#install-lxd-from-source
2024-02-01 12:15:36 +01:00
"acl",
"attr",
"autoconf",
2024-02-06 20:54:56 +01:00
"automake",
2024-02-01 12:15:36 +01:00
"dnsmasq-base",
"git",
"libacl1-dev",
"libcap-dev",
"liblxc1",
2024-02-06 22:51:20 +01:00
"lxc-dev",
2024-02-01 12:15:36 +01:00
"libsqlite3-dev",
"libtool",
"libudev-dev",
"liblz4-dev",
"libuv1-dev",
"make",
"pkg-config",
"rsync",
"squashfs-tools",
"tar",
"tcl",
"xz-utils",
"ebtables",
2024-02-06 20:54:56 +01:00
# For lvm2
2024-02-01 12:15:36 +01:00
"lvm2",
"thin-provisioning-tools",
2024-02-01 16:50:39 +01:00
2024-02-06 20:54:56 +01:00
# For btrfs
"btrfs-progs"
2024-02-01 12:15:36 +01:00
]