mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
6dce1a2d9c
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
25 lines
727 B
BlitzBasic
25 lines
727 B
BlitzBasic
SUMMARY = "Kodi Media Center"
|
|
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://JsonSchemaBuilder.cpp;beginline=2;endline=18;md5=1f67721215c03f66545390f6e45b99c7"
|
|
|
|
SRCREV = "661dd08d221f5b2bf509a696a6aca5ee7d45bb27"
|
|
|
|
PV = "17.1+gitr${SRCPV}"
|
|
SRC_URI = "git://github.com/xbmc/xbmc.git;branch=Krypton"
|
|
|
|
inherit autotools-brokensep gettext native
|
|
|
|
S = "${WORKDIR}/git/tools/depends/native/JsonSchemaBuilder/src"
|
|
|
|
do_compile_prepend() {
|
|
for i in $(find . -name "Makefile") ; do
|
|
sed -i -e 's:I/usr/include:I${STAGING_INCDIR}:g' $i
|
|
done
|
|
|
|
for i in $(find . -name "*.mak*" -o -name "Makefile") ; do
|
|
sed -i -e 's:I/usr/include:I${STAGING_INCDIR}:g' -e 's:-rpath \$(libdir):-rpath ${libdir}:g' $i
|
|
done
|
|
}
|
|
|