mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 05:36:47 +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
|
# Partition labels for USB/SD installation media
|
||||||
DISTRO_BOOTLABEL="LIBREELEC"
|
DISTRO_BOOTLABEL="LIBREELEC"
|
||||||
DISTRO_DISKLABEL="STORAGE"
|
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
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
||||||
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="mediacenter"
|
PKG_NAME="mediacenter"
|
||||||
PKG_VERSION=""
|
PKG_VERSION=""
|
||||||
@ -23,9 +24,14 @@ if [ "$MEDIACENTER" = "kodi" ]; then
|
|||||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET Pillow \
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET Pillow \
|
||||||
simplejson \
|
simplejson \
|
||||||
pycryptodome"
|
pycryptodome"
|
||||||
|
|
||||||
|
# settings addon
|
||||||
|
if [ -n "$DISTRO_PKG_SETTINGS" ]; then
|
||||||
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET $DISTRO_PKG_SETTINGS"
|
||||||
|
fi
|
||||||
|
|
||||||
# other packages
|
# other packages
|
||||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET LibreELEC-settings \
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET xmlstarlet"
|
||||||
xmlstarlet"
|
|
||||||
|
|
||||||
if [ "$JOYSTICK_SUPPORT" = "yes" ]; then
|
if [ "$JOYSTICK_SUPPORT" = "yes" ]; then
|
||||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET peripheral.joystick"
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET peripheral.joystick"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user