dvbapp : TranscodingSetup update
[vuplus_openembedded] / recipes / disko / disko.inc
1 DESCRIPTION = "Disko is an application framework, that can be used to develop GUI applications for embedded devices."
2 LICENSE = "GPL"
3
4 DEPENDS = "sqlite3 libpng jpeg curl alsa-lib freetype libxml2 libsigc++-2.0 openssl"
5
6 inherit scons pkgconfig
7
8 ARM_INSTRUCTION_SET = "arm"
9 LD = ${CXX}
10
11 #workaround for disko which creates .pc inside install
12 do_install_append () {
13
14 for i in `find ${S}/ ${D}/${libdir}/pkgconfig -name "*.pc" -type f` ; do \
15             sed -i -e 's:${D}::g' $i
16         done
17 }
18
19 scons_do_stage_append () {
20         STAGE_PKG_SEARCHPATH="${S}/ ${@['','${WORKDIR}/staging-pkg/'][bb.data.inherits_class('packaged-staging',d)]}"
21         for i in `find ${STAGE_PKG_SEARCHPATH} -name "*.pc" -type f` ; do \
22             sed -i -e 's:${STAGING_DIR_HOST}::g' $i
23         done
24 }