diff options
author | Koen Kooi <koen@openembedded.org> | 2009-08-26 11:35:14 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-08-26 11:35:14 +0200 |
commit | 172cb63ce5e91d489993590ec09e418aba019b4e (patch) | |
tree | e10d322895620ec0c96c2ab0efcd296bfc93b6b9 /recipes/ti/ti-codec-engine_2.23.1.bb | |
parent | bac5eef9c8a73672ee114926011addabb36610eb (diff) |
dvsdk: rename to ti now that other things like bitblit live in that dir now
Diffstat (limited to 'recipes/ti/ti-codec-engine_2.23.1.bb')
-rw-r--r-- | recipes/ti/ti-codec-engine_2.23.1.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes/ti/ti-codec-engine_2.23.1.bb b/recipes/ti/ti-codec-engine_2.23.1.bb new file mode 100644 index 0000000000..a0e6a2ca7a --- /dev/null +++ b/recipes/ti/ti-codec-engine_2.23.1.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "Codec Engine 2.23.01 for TI ARM/DSP processors" + +# compile time dependencies +DEPENDS_dm6446-evm += "ti-xdctools-native ti-cgt6x-native ti-dspbios-native" +DEPENDS_omap3evm += "ti-cgt6x-native ti-dspbios-native ti-xdctools-native" +DEPENDS_beagleboard += "ti-cgt6x-native ti-dspbios-native ti-xdctools-native" +DEPENDS_dm355-evm += "ti-xdctools-native" + +# tconf from xdctools dislikes '.' in pwd :/ +PR = "r16" +PV = "2231" + +# Download codec_engine_2_23_01.tar.gz from https://www-a.ti.com/downloads/sds_support/targetcontent/CE/ce_2_23/index.html and copy in Arago (or OE) download directory. + +SRC_URI = "http://install.source.dir.com/codec_engine_2_23_01.tar.gz " + +# Set the source directory +S = "${WORKDIR}/codec_engine_2_23_01" + +do_compile () { + echo "! Do not rebuild for now !" +} + +# stage tree - other packages may need this +do_stage() { + install -d ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/${PN} + cp -pPrf ${S}/* ${STAGING_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/ +} + +PACKAGE_ARCH = "${MACHINE_ARCH}" +INHIBIT_PACKAGE_STRIP = "1" + |