summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2017-04-29 10:37:27 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-04-29 11:36:04 +0200
commite81839aff14f0b61af557c7054318297cbeb7b94 (patch)
treefe3f874a48b5bc4109649f2a9484ae31c507be85 /package
parent1dd318805e500dde7c556dea0d1009d58cde1de1 (diff)
downloadbuildroot-e81839aff14f0b61af557c7054318297cbeb7b94.tar.gz
buildroot-e81839aff14f0b61af557c7054318297cbeb7b94.zip
package/kodi-texturepacker: new host package
Needed for upcoming kodi version bump to 17.1-Krypton which will also switch the kodi build system to CMake. "-std=c++0x" is needed to maintain compatability with host-gcc 4.6. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Thomas: move texturepacker patch from Kodi package, use SPDX license code, minor tweaks.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package')
-rw-r--r--package/kodi-texturepacker/0001-texturepacker.patch (renamed from package/kodi/0002-texturepacker.patch)0
l---------package/kodi-texturepacker/kodi-texturepacker.hash1
-rw-r--r--package/kodi-texturepacker/kodi-texturepacker.mk41
3 files changed, 42 insertions, 0 deletions
diff --git a/package/kodi/0002-texturepacker.patch b/package/kodi-texturepacker/0001-texturepacker.patch
index 8830b4c646..8830b4c646 100644
--- a/package/kodi/0002-texturepacker.patch
+++ b/package/kodi-texturepacker/0001-texturepacker.patch
diff --git a/package/kodi-texturepacker/kodi-texturepacker.hash b/package/kodi-texturepacker/kodi-texturepacker.hash
new file mode 120000
index 0000000000..a575750997
--- /dev/null
+++ b/package/kodi-texturepacker/kodi-texturepacker.hash
@@ -0,0 +1 @@
+../kodi/kodi.hash \ No newline at end of file
diff --git a/package/kodi-texturepacker/kodi-texturepacker.mk b/package/kodi-texturepacker/kodi-texturepacker.mk
new file mode 100644
index 0000000000..c6d3b0523b
--- /dev/null
+++ b/package/kodi-texturepacker/kodi-texturepacker.mk
@@ -0,0 +1,41 @@
+################################################################################
+#
+# kodi-texturepacker
+#
+################################################################################
+
+# Not possible to directly refer to kodi variables, because of
+# first/second expansion trickery...
+KODI_TEXTUREPACKER_VERSION = 17.1-Krypton
+KODI_TEXTUREPACKER_SITE = $(call github,xbmc,xbmc,$(KODI_TEXTUREPACKER_VERSION))
+KODI_TEXTUREPACKER_SOURCE = kodi-$(KODI_TEXTUREPACKER_VERSION).tar.gz
+KODI_TEXTUREPACKER_LICENSE = GPL-2.0
+KODI_TEXTUREPACKER_LICENSE_FILES = LICENSE.GPL
+HOST_KODI_TEXTUREPACKER_SUBDIR = tools/depends/native/TexturePacker
+HOST_KODI_TEXTUREPACKER_DEPENDENCIES = \
+ host-giflib \
+ host-libjpeg \
+ host-libpng \
+ host-lzo
+
+HOST_KODI_TEXTUREPACKER_CXXFLAGS = \
+ $(HOST_CXXFLAGS) \
+ -std=c++0x \
+ -DTARGET_POSIX \
+ -DTARGET_LINUX \
+ -D_LINUX \
+ -I$(@D)/xbmc/linux
+
+HOST_KODI_TEXTUREPACKER_CONF_OPTS += \
+ -DCMAKE_CXX_FLAGS="$(HOST_KODI_TEXTUREPACKER_CXXFLAGS)" \
+ -DCMAKE_MODULE_PATH=$(@D)/project/cmake/modules \
+ -DCORE_SOURCE_DIR=$(@D) \
+ -Wno-dev
+
+define HOST_KODI_TEXTUREPACKER_INSTALL_CMDS
+ $(INSTALL) -m 755 -D \
+ $(@D)/tools/depends/native/TexturePacker/TexturePacker \
+ $(HOST_DIR)/usr/bin/TexturePacker
+endef
+
+$(eval $(host-cmake-package))
OpenPOWER on IntegriCloud