mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
projects/*/options: add option to build without MySQL support
This commit is contained in:
parent
9d57ba20f5
commit
8d56286013
@ -25,11 +25,16 @@ PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="https://github.com/opdenkamp/xbmc-pvr-addons"
|
||||
PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||
PKG_DEPENDS="mysql curl"
|
||||
PKG_BUILD_DEPENDS="toolchain mysql curl"
|
||||
PKG_DEPENDS="curl"
|
||||
PKG_BUILD_DEPENDS="toolchain curl"
|
||||
PKG_PRIORITY="optional"
|
||||
PKG_SECTION="mediacenter"
|
||||
PKG_SHORTDESC="Various PVR addons for XBMC"
|
||||
PKG_LONGDESC="This addons allows XBMC PVR to connect to various TV/PVR backends and tuners."
|
||||
PKG_IS_ADDON="no"
|
||||
PKG_AUTORECONF="yes"
|
||||
|
||||
if [ "$MYSQL_SUPPORT" = yes ]; then
|
||||
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS mysql"
|
||||
PKG_DEPENDS="$PKG_DEPENDS mysql"
|
||||
fi
|
||||
|
@ -152,6 +152,13 @@ else
|
||||
XBMC_UPNP="--disable-upnp"
|
||||
fi
|
||||
|
||||
if [ "$MYSQL_SUPPORT" = yes ]; then
|
||||
XBMC_MYSQL="--enable-mysql"
|
||||
else
|
||||
XBMC_MYSQL="--disable-mysql"
|
||||
|
||||
fi
|
||||
|
||||
if [ "$NFS_SUPPORT" = yes ]; then
|
||||
XBMC_NFS="--enable-nfs"
|
||||
else
|
||||
@ -288,6 +295,7 @@ cd $PKG_BUILD
|
||||
--disable-hal \
|
||||
$XBMC_AVAHI \
|
||||
$XBMC_UPNP \
|
||||
$XBMC_MYSQL \
|
||||
$XBMC_AIRPLAY \
|
||||
$XBMC_AIRTUNES \
|
||||
$XBMC_NONFREE \
|
||||
|
@ -26,7 +26,7 @@ PKG_LICENSE="GPL"
|
||||
PKG_SITE="http://www.xbmc.org"
|
||||
PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||
PKG_DEPENDS="boost Python zlib bzip2 systemd pcre ffmpeg libass curl libssh rtmpdump fontconfig tinyxml freetype libmad libogg libmodplug faad2 flac libmpeg2 taglib yajl sqlite bc xbmc-addon-settings"
|
||||
PKG_BUILD_DEPENDS="toolchain boost Python zlib bzip2 systemd lzo pcre swig ffmpeg libass enca curl libssh rtmpdump fontconfig fribidi tinyxml libjpeg-turbo libpng tiff freetype jasper libmad libsamplerate libogg libcdio libmodplug faad2 flac libmpeg2 taglib yajl sqlite mysql"
|
||||
PKG_BUILD_DEPENDS="toolchain boost Python zlib bzip2 systemd lzo pcre swig ffmpeg libass enca curl libssh rtmpdump fontconfig fribidi tinyxml libjpeg-turbo libpng tiff freetype jasper libmad libsamplerate libogg libcdio libmodplug faad2 flac libmpeg2 taglib yajl sqlite"
|
||||
PKG_PRIORITY="optional"
|
||||
PKG_SECTION="mediacenter"
|
||||
PKG_SHORTDESC="xbmc: XBMC Mediacenter"
|
||||
@ -130,6 +130,11 @@ if [ "$AVAHI_DAEMON" = yes ]; then
|
||||
PKG_DEPENDS="$PKG_DEPENDS avahi"
|
||||
fi
|
||||
|
||||
if [ "$MYSQL_SUPPORT" = yes ]; then
|
||||
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS mysql"
|
||||
PKG_DEPENDS="$PKG_DEPENDS mysql"
|
||||
fi
|
||||
|
||||
if [ "$AIRPLAY_SUPPORT" = yes ]; then
|
||||
PKG_BUILD_DEPENDS="$PKG_BUILD_DEPENDS libplist"
|
||||
PKG_DEPENDS="$PKG_DEPENDS libplist"
|
||||
|
@ -178,6 +178,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
@ -177,6 +177,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
@ -177,6 +177,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
@ -177,6 +177,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
@ -177,6 +177,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
@ -177,6 +177,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
@ -177,6 +177,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
@ -177,6 +177,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
@ -172,6 +172,9 @@
|
||||
# build with UPnP support (yes / no)
|
||||
UPNP_SUPPORT="yes"
|
||||
|
||||
# build with MySQL support (yes / no)
|
||||
MYSQL_SUPPORT="yes"
|
||||
|
||||
# build with AirPlay support (stream videos from iDevices to XBMC) (yes / no)
|
||||
AIRPLAY_SUPPORT="yes"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user