summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7f21e8f)
raw | patch | inline | side by side (parent: 7f21e8f)
author | Koen Kooi <koen@dominion.thruhere.net> | |
Thu, 3 Nov 2011 08:46:07 +0000 (09:46 +0100) | ||
committer | Koen Kooi <koen@dominion.thruhere.net> | |
Thu, 3 Nov 2011 13:57:34 +0000 (14:57 +0100) |
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
recipes-misc/payload/bonescript.bb | [new file with mode: 0644] | patch | blob |
diff --git a/recipes-misc/payload/bonescript.bb b/recipes-misc/payload/bonescript.bb
--- /dev/null
@@ -0,0 +1,19 @@
+DESCRIPTION = "Scripting tools for the BeagleBoard and BeagleBone"
+
+inherit allarch
+
+# Ask Jason
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
+
+SRCREV = "0b264f3144cb6385e33346dec02692d71844898d"
+SRC_URI = "git://github.com/jadonk/bonescript.git"
+S = "${WORKDIR}/git"
+
+do_install() {
+ install -d ${D}${localstatedir}/lib/cloud9/
+ cp -a ${S}/* ${D}${localstatedir}/lib/cloud9/
+ cp -a ${S}/.git ${D}${localstatedir}/lib/cloud9/
+}
+
+FILES_${PN} += "${localstatedir}"