diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-11-03 09:46:07 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-11-03 14:57:34 +0100 |
commit | 94a875cca86f2ada8234d0622b008837c9752640 (patch) | |
tree | 61b504e0bd2024cba94e812b7a1e6e4e38f17096 | |
parent | 7f21e8f91834f18b04cae88abf47b3b65e0ab002 (diff) | |
download | meta-ti-94a875cca86f2ada8234d0622b008837c9752640.tar.gz |
bonescript: initial add
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rw-r--r-- | recipes-misc/payload/bonescript.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes-misc/payload/bonescript.bb b/recipes-misc/payload/bonescript.bb new file mode 100644 index 00000000..9c5064ad --- /dev/null +++ b/recipes-misc/payload/bonescript.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "Scripting tools for the BeagleBoard and BeagleBone" | ||
2 | |||
3 | inherit allarch | ||
4 | |||
5 | # Ask Jason | ||
6 | LICENSE = "MIT" | ||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | ||
8 | |||
9 | SRCREV = "0b264f3144cb6385e33346dec02692d71844898d" | ||
10 | SRC_URI = "git://github.com/jadonk/bonescript.git" | ||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | do_install() { | ||
14 | install -d ${D}${localstatedir}/lib/cloud9/ | ||
15 | cp -a ${S}/* ${D}${localstatedir}/lib/cloud9/ | ||
16 | cp -a ${S}/.git ${D}${localstatedir}/lib/cloud9/ | ||
17 | } | ||
18 | |||
19 | FILES_${PN} += "${localstatedir}" | ||