diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-07-11 20:08:56 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-07-17 14:24:28 +0200 |
commit | 632b5aa9ab446e5b24e767331e794a5ffc62d07e (patch) | |
tree | 76d9e796ac431631a7e4b1ea6e4e45c940ce8cb7 | |
parent | d7d730182c9f5891b4df99e20dcd8a28a60ec19d (diff) | |
download | buildroot-632b5aa9ab446e5b24e767331e794a5ffc62d07e.tar.gz buildroot-632b5aa9ab446e5b24e767331e794a5ffc62d07e.zip |
package/kodi: re-structure dependencies
Use one package per line to ease review of Kodi 17 version bump, where
10+ packages will be removed. This patch contains no code changes.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/kodi/kodi.mk | 55 |
1 files changed, 48 insertions, 7 deletions
diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk index 90c50c3ae1..8a3b0bfc5f 100644 --- a/package/kodi/kodi.mk +++ b/package/kodi/kodi.mk @@ -10,13 +10,54 @@ KODI_LICENSE = GPLv2 KODI_LICENSE_FILES = LICENSE.GPL # needed for binary addons KODI_INSTALL_STAGING = YES -KODI_DEPENDENCIES = host-gawk host-gettext host-gperf host-zip host-giflib \ - host-libjpeg host-lzo host-nasm host-libpng host-swig -KODI_DEPENDENCIES += boost bzip2 expat ffmpeg fontconfig freetype giflib jasper jpeg \ - libass libcdio libcrossguid libcurl libdcadec libfribidi libgcrypt libmpeg2 \ - libogg libplist libpng libsamplerate libsquish libvorbis libxml2 \ - libxslt lzo ncurses openssl pcre python readline sqlite taglib tiff \ - tinyxml yajl zlib +KODI_DEPENDENCIES = \ + boost \ + bzip2 \ + expat \ + ffmpeg \ + fontconfig \ + freetype \ + giflib \ + host-gawk \ + host-gettext \ + host-giflib \ + host-gperf \ + host-libjpeg \ + host-libpng \ + host-lzo \ + host-nasm \ + host-swig \ + host-zip \ + jasper \ + jpeg \ + libass \ + libcdio \ + libcrossguid \ + libcurl \ + libdcadec \ + libfribidi \ + libgcrypt \ + libmpeg2 \ + libogg \ + libplist \ + libpng \ + libsamplerate \ + libsquish \ + libvorbis \ + libxml2 \ + libxslt \ + lzo \ + ncurses \ + openssl \ + pcre \ + python \ + readline \ + sqlite \ + taglib \ + tiff \ + tinyxml \ + yajl \ + zlib KODI_CONF_ENV = \ PYTHON_VERSION="$(PYTHON_VERSION_MAJOR)" \ |