Sunil Mohan Adapa baa44e91a2
*: Update imports statements from plinth to freedombox
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2026-08-28 07:35:18 -04:00

50 lines
1.2 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
from django.utils.translation import gettext_lazy as _
from freedombox.clients import store_url
clients = [{
'name':
_('Luanti'),
'platforms': [{
'type': 'download',
'os': 'gnu-linux',
'url': 'https://www.luanti.org/downloads/'
}, {
'type': 'download',
'os': 'macos',
'url': 'https://www.luanti.org/downloads/'
}, {
'type': 'download',
'os': 'windows',
'url': 'https://www.luanti.org/downloads/'
}, {
'type': 'store',
'os': 'android',
'store_name': 'f-droid',
'url': store_url('f-droid', 'net.minetest.minetest')
}, {
'type': 'store',
'os': 'android',
'store_name': 'google-play',
'url': store_url('google-play', 'net.minetest.minetest')
}, {
'type': 'package',
'format': 'deb',
'name': 'luanti'
}]
}]
backup = {
'config': {
'files': ['/etc/luanti/default.conf']
},
'data': {
'directories': ['/var/lib/private/luanti/default/']
},
'services': ['luanti-server']
}
tags = [_('Game server'), _('Block sandbox'), _('Platform')]