DESCRIPTION = "Node-RED" HOMEPAGE = "http://nodered.org" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" DEPENDS = "nodejs nodejs-native" PR = "r0" inherit npm # tag 0.9.1 SRCREV = "da1321f1dea0545ed9782d7fa6a18b855bafd8d9" SRC_URI = "git://github.com/node-red/node-red.git \ " S = "${WORKDIR}/git" do_install() { # npm install dependencies oe_runnpm install --production # npm install more stuff # nodemailer 0.7.1 is latest that can be used with node 0.8.x oe_runnpm install serialport@1.4.2 nodemailer@0.7.1 # remove dupe deps oe_runnpm dedupe # install node-red install -d ${D}/opt/node-red cp -r * ${D}/opt/node-red/ } FILES_${PN} += "/opt/node-red"