mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 21:26:49 +00:00
Merge pull request #2843 from MilhouseVH/le90_distro_settings
distro: allow configurable settings addon
This commit is contained in:
commit
2a7ccdaecb
@ -215,3 +215,6 @@
|
||||
# Partition labels for USB/SD installation media
|
||||
DISTRO_BOOTLABEL="LIBREELEC"
|
||||
DISTRO_DISKLABEL="STORAGE"
|
||||
|
||||
# Settings package name - blank if not required
|
||||
DISTRO_PKG_SETTINGS="LibreELEC-settings"
|
||||
|
@ -1,5 +1,6 @@
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
||||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="mediacenter"
|
||||
PKG_VERSION=""
|
||||
@ -23,9 +24,14 @@ if [ "$MEDIACENTER" = "kodi" ]; then
|
||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET Pillow \
|
||||
simplejson \
|
||||
pycryptodome"
|
||||
|
||||
# settings addon
|
||||
if [ -n "$DISTRO_PKG_SETTINGS" ]; then
|
||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET $DISTRO_PKG_SETTINGS"
|
||||
fi
|
||||
|
||||
# other packages
|
||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET LibreELEC-settings \
|
||||
xmlstarlet"
|
||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET xmlstarlet"
|
||||
|
||||
if [ "$JOYSTICK_SUPPORT" = "yes" ]; then
|
||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET peripheral.joystick"
|
||||
|
Loading…
x
Reference in New Issue
Block a user