diff options
author | Maxime Hadjinlian <maxime.hadjinlian@gmail.com> | 2014-03-27 23:40:46 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-03-27 23:48:56 +0100 |
commit | 9cfd429c1c3d6c7b793f58210f39bb041e680bac (patch) | |
tree | 1c2d9ae171ae3bce9464331d69826a0abc05fba5 | |
parent | bfe884fac7467425b4f9bd02e124696fea780661 (diff) | |
download | buildroot-9cfd429c1c3d6c7b793f58210f39bb041e680bac.tar.gz buildroot-9cfd429c1c3d6c7b793f58210f39bb041e680bac.zip |
xbmc: Add comment for host-sdl_images dependency
A few people have already asked why XBMC depends on host-sdl_image and
host-sdl.
Since this is not obvious, this patch add a comments explaining why it's
needed.
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/xbmc/xbmc.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index a43b41dbb3..6dbbb7dba7 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -8,6 +8,10 @@ XBMC_VERSION = 12.3-Frodo XBMC_SITE = $(call github,xbmc,xbmc,$(XBMC_VERSION)) XBMC_LICENSE = GPLv2 XBMC_LICENSE_FILES = LICENSE.GPL +# XBMC needs host-sdl_image (and therefore host-sdl) for a host tools it builds +# called TexturePacker. It is responsible to take all the images used in the +# GUI and pack them in a blob. +# http://wiki.xbmc.org/index.php?title=TexturePacker XBMC_DEPENDENCIES = host-gperf host-lzo host-sdl_image host-swig XBMC_DEPENDENCIES += boost bzip2 expat flac fontconfig freetype jasper jpeg \ libass libcdio libcurl libfribidi libgcrypt libmad libmodplug libmpeg2 \ |