diff options
author | Roger Monk <r-monk@ti.com> | 2010-05-19 16:34:31 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-05-19 18:50:01 +0200 |
commit | 8839e15f07593da561f5e432f39004ea42e47950 (patch) | |
tree | 83f88ae852225355a772e48e79548ad9b662672c /recipes | |
parent | 93e990fb4f4978f7ca636f297db96eed476eb918 (diff) |
ti-msp430-chronos: Add RDEPEND on tk, fix dos2unix
Signed-off-by: Roger Monk <r-monk@ti.com>
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/ti/ti-msp430-chronos_1.05.00.00.bb | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/recipes/ti/ti-msp430-chronos_1.05.00.00.bb b/recipes/ti/ti-msp430-chronos_1.05.00.00.bb index 38812f067f..089cd7f28f 100644 --- a/recipes/ti/ti-msp430-chronos_1.05.00.00.bb +++ b/recipes/ti/ti-msp430-chronos_1.05.00.00.bb @@ -1,8 +1,10 @@ DESCRIPTION = "eZ430 Chronos Tools - MSP430 Development Kit/Watch" HOMEPAGE = "http://processors.wiki.ti.com/index.php/EZ430-Chronos" +LICENCE = "unknown" SECTION = "multimedia" PV = "1_05_00_00" +PR = "1" SRC_URI = "http://focus.ti.com/lit/sw/slac388/slac388.zip;name=slac388zip" @@ -30,10 +32,15 @@ do_install() { install -d ${D}/${installdir}/ti-msp430-chronos-apps cp -pPrf "${S}"/"Control Center"/* ${D}/${installdir}/ti-msp430-chronos-apps + + # Remove dos formatting + dos2unix "${D}/${installdir}/ti-msp430-chronos-apps/Chronos Data Logger"/* + dos2unix "${D}/${installdir}/ti-msp430-chronos-apps/Chronos Control Center"/* + + # Should probably also remove hardcoded script reference to tcl8.5 } PACKAGES += "ti-msp430-chronos-apps" FILES_ti-msp430-chronos-apps = "${installdir}/ti-msp430-chronos-apps/*" -RDEPENDS_ti-msp430-chronos-apps += " tcl xdotool" - +RDEPENDS_ti-msp430-chronos-apps += " tcl tk xdotool" |