[oe-commits] Jason Kridner : cloud9: created

git version control git at git.openembedded.org
Fri Oct 7 21:15:46 UTC 2011


Module: meta-openembedded.git
Branch: master
Commit: e57ec76108139fec1f8c4ee12711a9519ebb0902
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=e57ec76108139fec1f8c4ee12711a9519ebb0902

Author: Jason Kridner <jdk at ti.com>
Date:   Thu Oct  6 06:21:51 2011 +0000

cloud9: created

Cloud9 is a web-browser based IDE running on node.js.

This application should support multiple architectures as long as they have
node.js and a build of node-o3-xml that is dropped into this system.
Currently, that includes x86 32/64-bit and ARM armv7.  Ideally, that library
would be added separately as a system-dependent portion, because everything
else should be ISA independent.

[ small DEPENDS fixes added by koen ]

Signed-off-by: Jason Kridner <jdk at ti.com>
Signed-off-by: Koen Kooi <koen at dominion.thruhere.net>

---

 meta-oe/recipes-devtools/cloud9/cloud9_0.5.1.bb |   39 +++++++++++++++++++++++
 1 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/meta-oe/recipes-devtools/cloud9/cloud9_0.5.1.bb b/meta-oe/recipes-devtools/cloud9/cloud9_0.5.1.bb
new file mode 100644
index 0000000..b6d2da0
--- /dev/null
+++ b/meta-oe/recipes-devtools/cloud9/cloud9_0.5.1.bb
@@ -0,0 +1,39 @@
+DESCRIPTION = "Meet Cloud9, development-as-a-service for Javascripters and other developers"
+HOMEPAGE = "http://c9.io"
+LICENSE = "GPLv3"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4784c3bcff601fd8f9515f52a11e7018"
+
+SRC_URI = "git://github.com/jadonk/cloud9.git;protocol=git \
+"
+
+SRCREV = "08bae1d1cc2ba9f7f883a25afd07f0339a82fa8b"
+S = "${WORKDIR}/git"
+
+# Most of cloud9 is in git submodules that still need to be fetched.
+do_configure_prepend () {
+ git submodule update --init --recursive
+}
+
+# There's nothing left to be compiled at this time.
+# node-o3-xml is the only compiled code module in here.
+# The repository has binaries for:
+#  Linux ARM armv7
+#  Linux x86 32/64-bit
+#  Sun Solaris 32-bit
+#  Mac x86 32/64-bit
+#  Windows x86 32-bit
+do_compile () {
+:
+}
+
+do_install () {
+ install -m 0755 -d ${D}/usr/share/cloud9 ${D}${bindir} ${D}/var/lib/cloud9
+ rsync -r --exclude=".*" ${S}/* ${D}/usr/share/cloud9
+ touch ${D}${bindir}/cloud9
+ echo "#!/bin/sh" > ${D}${bindir}/cloud9
+ echo "node /usr/share/cloud9/bin/cloud9.js -l 0.0.0.0 -w /var/lib/cloud9 -p 3000" >> ${D}${bindir}/cloud9
+ chmod 0755 ${D}${bindir}/cloud9
+}
+
+RDEPENDS_${PN} = "nodejs"
+





More information about the Openembedded-commits mailing list