diff options
author | Brijesh Singh <bksingh@ti.com> | 2010-05-09 11:13:50 -0500 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-06-12 11:03:50 +0200 |
commit | 74455882fb39759b25091586e47bd6b2124235bc (patch) | |
tree | 09134730b5736a06f4e6020c25d509b6720ca30b /recipes | |
parent | 222f43cf492e11cc9af6e45fc535dbd14c75fbec (diff) |
ti-codecs-dm355_3.10.00.00: add dm355 codec recipie
Signed-off-by: Brijesh Singh <bksingh@ti.com>
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/ti/ti-codecs-dm355_3.10.00.00.bb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/recipes/ti/ti-codecs-dm355_3.10.00.00.bb b/recipes/ti/ti-codecs-dm355_3.10.00.00.bb new file mode 100644 index 0000000000..15cec04a90 --- /dev/null +++ b/recipes/ti/ti-codecs-dm355_3.10.00.00.bb @@ -0,0 +1,44 @@ +DESCRIPTION = "TI Codecs for DM355" +HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent" +SECTION = "multimedia" +LICENSE = "TI" + +# TODO :: Move to common .inc + +PV = "3_10_00_00" + +SRC_URI[dm355codecsbin.md5sum] = "4754892642d44aea67f43dee446ea1f7" +SRC_URI[dm355codecsbin.sha256sum] = "bad458c49543f585d7f55c3bcd63816613fa730522534b9959c49cdd7fb76492" + +PR = "r1" + +require ti-paths.inc +require ti-staging.inc + +PROVIDES += "ti-codecs-dm355-server" + +S = "${WORKDIR}/dm355_codecs_0${PV}" + +SRC_URI = "ftp://gtftp01.gt.design.ti.com/arago/dm355_codecs_0${PV}.tar.gz;name=dm355codecsbin \ + file://mapdmaq \ +" + +do_compile() { + echo "Do Nothing" +} + +do_install() { + + install -d ${D}/${installdir}/ti-codecs-server + cd ${S} + + install -m 0755 ${WORKDIR}/mapdmaq ${D}/${installdir}/ti-codecs-server + + install -d ${D}${CODEC_INSTALL_DIR_RECIPE} + cp -pPrf ${S}/* ${D}${CODEC_INSTALL_DIR_RECIPE} +} + +PACKAGES += "ti-codecs-dm355-server" +FILES_ti-codecs-dm355-server = "${installdir}/ti-codecs-server/*" + +INSANE_SKIP_ti-codecs-dm355-server = True |