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

100 lines
3.2 KiB
TOML
Raw Normal View History

2023-02-20 22:22:42 +01:00
packaging_format = 2
id = "domoticz"
name = "Domoticz"
2023-11-29 10:25:00 +01:00
description.en = "Lightweight Home Automation System"
description.fr = "Système domotique léger"
2023-02-20 22:22:42 +01:00
2024-01-30 21:56:54 +01:00
version = "2024.4~ynh1"
2023-02-20 22:22:42 +01:00
maintainers = ["Krakinou"]
[upstream]
license = "GPL-3.0-or-later"
website = "https://domoticz.com/"
admindoc = "https://www.domoticz.com/wiki/Main_Page"
userdoc = "https://www.domoticz.com/DomoticzManual.pdf"
code = "https://github.com/domoticz/domoticz"
2023-02-27 23:24:05 +01:00
cpe = "cpe:2.3:a:domoticz:domoticz"
fund = "https://www.paypal.com/donate?token=rF_gUybGmQGia_jzLfu3vkeXRqYLRV-v-BxCTylrTsEN4mB-nDdSVQhg3a-I9LkiqORq70Gtxbo6rq3r&locale.x=US"
2023-02-20 22:22:42 +01:00
[integration]
2023-09-10 14:53:27 +02:00
yunohost = ">= 11.2"
2023-05-26 23:23:50 +02:00
architectures = [ "amd64", "armhf", "arm64" ]
2023-02-20 22:22:42 +01:00
multi_instance = false
2023-11-29 10:25:00 +01:00
2023-09-10 14:53:27 +02:00
ldap = false
2023-11-29 10:25:00 +01:00
2023-09-10 14:53:27 +02:00
sso = false
2023-11-29 10:25:00 +01:00
2023-09-10 14:53:27 +02:00
disk = "100M"
2023-06-01 23:27:35 +02:00
ram.build = "150M"
2023-02-27 23:24:05 +01:00
ram.runtime = "50M"
2023-02-20 22:22:42 +01:00
[install]
[install.domain]
type = "domain"
[install.path]
type = "path"
default = "/domoticz"
[install.init_main_permission]
type = "group"
2023-02-27 23:24:05 +01:00
default = "all_users"
2023-02-20 22:22:42 +01:00
[install.mqtt_domain]
ask.fr = "Domaine MQTT"
ask.en = "MQTT domain"
2024-01-21 16:55:58 +01:00
help.fr = "Domaine pour le serveur MQTT. Remettez le domaine principal ou à vide si vous ne souhaitez pas l'utiliser. Lire la documentation pour plus d'informations"
help.en = "MQTT server domain. Set blank or the main domain if you don't wish to use it. See the doc for more info"
2023-02-20 22:22:42 +01:00
type = "domain"
optional = true
[resources]
2023-05-26 23:23:50 +02:00
[resources.sources.main]
2024-01-30 21:56:54 +01:00
arm64.url = "https://github.com/domoticz/domoticz/releases/download/2024.4/domoticz_linux_aarch64.tgz"
arm64.sha256 = "779f47f45352814c4dba60ca0d28eb0301181402e31a12b23343079dcfa4ff05"
armhf.url = "https://github.com/domoticz/domoticz/releases/download/2024.4/domoticz_linux_armv7l.tgz"
armhf.sha256 = "33a4ccccfe786cc605622ec05c76d8b0c59afded75192ad1e8d0c5c7af200c01"
amd64.url = "https://github.com/domoticz/domoticz/releases/download/2024.4/domoticz_linux_x86_64.tgz"
amd64.sha256 = "8e6b968ed20ca30ecbe089bc6ed37cd63ced18b27b49fa8d58ed61f2bbbf6a63"
2023-05-26 23:23:50 +02:00
format="tar.gz"
in_subdir=false
extract=true
2024-01-30 21:56:54 +01:00
autoupdate.strategy = "latest_github_release"
autoupdate.asset.arm64 = ".*domoticz_linux_aarch64.tgz"
autoupdate.asset.amd64 = ".*domoticz_linux_x86_64.tgz"
autoupdate.asset.armhf = ".*domoticz_linux_armv7l.tgz"
2023-05-26 23:23:50 +02:00
[resources.system_user]
[resources.install_dir]
[resources.permissions]
main.url = "/"
2024-01-21 16:55:58 +01:00
main.auth_header = false
2023-05-26 23:23:50 +02:00
2024-01-21 16:55:58 +01:00
api.url = "__DOMAIN__/api_/__APP__"
2024-01-20 21:44:42 +01:00
api.show_tile = false
2023-06-01 23:27:35 +02:00
api.allowed = "visitors"
2023-05-26 23:23:50 +02:00
2024-01-21 16:55:58 +01:00
#Permission will be removed by the install script if not needed
mqtt.url = "__MQTT_DOMAIN__/"
mqtt.show_tile = false
mqtt.allowed = "visitors"
2023-05-26 23:23:50 +02:00
[resources.ports]
main.default = 8080
#to be checked if it can become conditionnal
2023-05-27 18:13:49 +02:00
#ports will always be provisionned... don't know if it's an issue...
mqtt.default = 1883
mqtt_websocket.default = 8883
2023-05-26 23:23:50 +02:00
[resources.apt]
packages = "libudev-dev, python3-dev, libcurl4, libusb-0.1-4"
2023-05-27 18:13:49 +02:00
packages_from_raw_bash = '''if [ "$mqtt_domain" != "$domain" ]; then echo mosquitto mosquitto-clients; fi'''
2023-02-20 22:22:42 +01:00