mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 13:06:17 +00:00
47 lines
1.6 KiB
Makefile
47 lines
1.6 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="image"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://libreelec.tv"
|
|
PKG_DEPENDS_TARGET="toolchain squashfs-tools:host dosfstools:host fakeroot:host kmod:host mtools:host populatefs:host libc gcc linux linux-drivers linux-firmware ${BOOTLOADER} busybox util-linux corefonts network misc-packages debug exfatprogs"
|
|
PKG_SECTION="virtual"
|
|
PKG_LONGDESC="Root package used to build and create complete image"
|
|
|
|
# Graphic support
|
|
[ ! "${DISPLAYSERVER}" = "no" ] && PKG_DEPENDS_TARGET+=" ${DISPLAYSERVER}"
|
|
|
|
# Multimedia support
|
|
[ ! "${MEDIACENTER}" = "no" ] && PKG_DEPENDS_TARGET+=" mediacenter"
|
|
|
|
# Sound support
|
|
[ "${ALSA_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" alsa"
|
|
|
|
[ "${PULSEAUDIO_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" pulseaudio"
|
|
|
|
[ "${PIPEWIRE_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" pipewire wireplumber"
|
|
|
|
if [ "${PULSEAUDIO_SUPPORT}" = "yes" -a "${PIPEWIRE_SUPPORT}" = "yes" ]; then
|
|
die "PULSEAUDIO_SUPPORT and PIPEWIRE_SUPPORT cannot be enabled together"
|
|
fi
|
|
|
|
# Automounter support
|
|
[ "${UDEVIL}" = "yes" ] && PKG_DEPENDS_TARGET+=" udevil"
|
|
|
|
# Remote support
|
|
[ "${REMOTE_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" remote"
|
|
|
|
# Virtual image creation support
|
|
[ "${PROJECT}" = "Generic" -a "${ARCH}" = "x86_64" ] && [ "${SKIP_VIRTUAL_APPLIANCE}" != "yes" ] && PKG_DEPENDS_TARGET+=" virtual"
|
|
|
|
# Installer support
|
|
[ "${INSTALLER_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" installer"
|
|
|
|
# Devtools... (not for Release)
|
|
[ "${TESTING}" = "yes" ] && PKG_DEPENDS_TARGET+=" testing"
|
|
|
|
# OEM packages
|
|
[ "${OEM_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" oem"
|
|
|
|
true
|