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

72 lines
1.8 KiB
TOML
Raw Normal View History

2023-06-04 10:58:53 +02:00
packaging_format = 2
id = "hubzilla"
name = "Hubzilla"
2023-06-04 11:23:42 +02:00
description.en = "Decentralized publication platform and social network"
description.fr = "Plateforme de publication décentralisée et un réseau social"
2023-06-04 10:58:53 +02:00
2023-10-01 22:13:02 +02:00
version = "8.6.3~ynh1"
2023-06-04 10:58:53 +02:00
2023-08-13 11:59:51 +02:00
maintainers = [""]
2023-06-04 10:58:53 +02:00
[upstream]
license = "MIT"
website = "https://zotlabs.org/page/hubzilla/hubzilla-project"
code = "https://framagit.org/hubzilla/core"
[integration]
2023-08-13 11:23:21 +02:00
yunohost = ">= 11.2"
2023-06-04 11:04:59 +02:00
architectures = "all"
2023-06-04 10:58:53 +02:00
multi_instance = true
2023-06-04 11:23:42 +02:00
ldap = true
2023-06-04 11:57:04 +02:00
sso = true
2023-06-04 11:04:59 +02:00
disk = "50M"
2023-06-04 11:57:04 +02:00
ram.build = "200M"
2023-06-04 11:04:59 +02:00
ram.runtime = "50M"
2023-06-04 10:58:53 +02:00
[install]
[install.domain]
type = "domain"
2023-10-01 22:09:42 +02:00
[install.init_main_permission]
type = "group"
default = "visitors"
2023-06-04 10:58:53 +02:00
[install.admin]
type = "user"
[install.database]
2023-06-04 11:57:04 +02:00
ask.en = "Choose Hubzilla database"
2023-06-04 10:58:53 +02:00
ask.fr = "Choisissez la database de Hubzilla"
2023-10-01 22:09:42 +02:00
type = "select"
2023-06-04 10:58:53 +02:00
choices = ["mysql", "postgresql"]
default = "mysql"
[resources]
[resources.sources]
[resources.sources.main]
2024-01-11 23:41:35 +01:00
url = "https://framagit.org/hubzilla/core/-/archive/8.8.6/core-8.8.6.tar.gz"
sha256 = "02482d6a1a1a0e90c977afa6336309e282f8cb9a4c271a358f8e442af6adfcb3"
2023-06-04 10:58:53 +02:00
2023-06-04 11:23:42 +02:00
[resources.sources.addons]
2024-01-11 23:41:35 +01:00
url = "https://framagit.org/hubzilla/addons/-/archive/8.8.6/addons-8.8.6.tar.gz"
sha256 = "b559cd6a5d18a1ce038d948a1fd76e1e85580c30a6350a01e942b1271118552a"
2023-06-04 10:58:53 +02:00
[resources.system_user]
[resources.install_dir]
[resources.permissions]
main.url = "/"
2023-06-04 11:04:59 +02:00
[resources.apt]
2024-01-11 23:41:35 +01:00
packages = "php8.2-curl, php8.2-gd, php8.2-mysql, php8.2-pgsql, php8.2-mbstring, php8.2-xml, php8.2-zip, php8.2-cli, php8.2-imagick php8.2-gmp"
2023-06-04 11:23:42 +02:00
packages_from_raw_bash = """
if [[ "$database" == "mysql" ]]; then
echo "mariadb-server"
elif [[ "$database" == "postgresql" ]]; then
echo "postgresql postgresql-contrib"
fi
"""