diff options
author | Koen Kooi <koen@openembedded.org> | 2009-06-16 16:08:09 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-06-16 16:08:09 +0200 |
commit | 8687813463bc7c9f37349000f75cfc0967da8458 (patch) | |
tree | eb550c22da7a2d9b35c64aee09172bd9d117c098 /recipes/dvsdk/ti-xdctools-sdk_3.10.03.bb | |
parent | d895433b6c50e46edd9a75ed512455513f8e00df (diff) |
dvsdk: sync with TI overlay (http://arago-project.org/git/people/?p=brijesh/arago-dvsdk.git;a=summary)
* cleanups will follow later
Diffstat (limited to 'recipes/dvsdk/ti-xdctools-sdk_3.10.03.bb')
-rw-r--r-- | recipes/dvsdk/ti-xdctools-sdk_3.10.03.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/dvsdk/ti-xdctools-sdk_3.10.03.bb b/recipes/dvsdk/ti-xdctools-sdk_3.10.03.bb new file mode 100644 index 0000000000..b68a0fcb00 --- /dev/null +++ b/recipes/dvsdk/ti-xdctools-sdk_3.10.03.bb @@ -0,0 +1,25 @@ +inherit sdk +require ti-xdctools.inc + +SRC_URI = "http://install.source.dir.com/xdctools_setuplinux_3_10_03.bin" +BINFILE="xdctools_setuplinux_3_10_03.bin" + +S = "${WORKDIR}/xdctools_3_10_03" + +# Yes, the xdc stuff still breaks with a '.' in PWD +PV = "310" +PR = "r14" + +do_install() { + install -d ${D}/${prefix}/dvsdk/xdctools_3_10_03 + cp -pPrf ${S}/* ${D}/${prefix}/dvsdk/xdctools_3_10_03 + + # Creates rules.make file + mkdir -p ${STAGING_DIR_HOST}/ti-sdk-rules + echo "# Where the RTSC tools package is installed." > ${STAGING_DIR_HOST}/ti-sdk-rules/xdc.Rules.make + echo "XDC_INSTALL_DIR=${prefix}/dvsdk/xdctools_3_10_03" >> ${STAGING_DIR_HOST}/ti-sdk-rules/xdc.Rules.make +} + +FILES_${PN} = "${prefix}/dvsdk/xdctools_3_10_03" +INSANE_SKIP_${PN} = True +INHIBIT_PACKAGE_STRIP = "1" |