diff options
Diffstat (limited to 'recipes/ti/ti-codecs-dm365.inc')
-rw-r--r-- | recipes/ti/ti-codecs-dm365.inc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/ti/ti-codecs-dm365.inc b/recipes/ti/ti-codecs-dm365.inc new file mode 100644 index 0000000000..b3166bef67 --- /dev/null +++ b/recipes/ti/ti-codecs-dm365.inc @@ -0,0 +1,26 @@ +DESCRIPTION = "DM365 Codecs" + +BASE_SRC_URI = "http://install.source.dir.local" +SRC_URI = "${BASE_SRC_URI}/dm365_codecs_${PV}.tar.gz" + +S = "${WORKDIR}/dm365_codecs_${PV}" + +do_compile() { + echo "Do nothing" +} + +do_install () { + # install mapdmaq on target + install -d ${D}/${installdir}/codecs +} + +do_stage() { + install -d ${CODEC_INSTALL_DIR} + cp -pPrf ${S}/* ${CODEC_INSTALL_DIR} +} + +PACKAGE_ARCH = "${MACHINE_ARCH}" +FILES_${PN} = "${installdir}/codecs" +INHIBIT_PACKAGE_STRIP = "1" +INSANE_SKIP_${PN} = True + |