README.md: add -dev repository information
authorBrendan Le Foll <brendan.le.foll@intel.com>
Sun, 1 Mar 2015 17:31:17 +0000 (17:31 +0000)
committerBrendan Le Foll <brendan.le.foll@intel.com>
Sun, 1 Mar 2015 17:31:17 +0000 (17:31 +0000)
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
README.md

index 581a406..6a665d6 100644 (file)
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ Installing on your board
 
 See the section below on compiling or use our repository to install on an
 eglibc based yocto poky image that supports opkg. Adding this repository is as
-simple as:
+simple as and you'll have the latest stable tagged build of mraa installed!
 
 ``` bash
 echo "src mraa-upm http://iotdk.intel.com/repos/1.1/intelgalactic" > /etc/opkg/mraa-upm.conf
@@ -40,6 +40,23 @@ opkg update
 opkg install libmraa0
 ```
 
+If you would like to get the latest & greatest builds from master HEAD you can
+use our -dev repository
+
+```bash
+echo "src mraa-upm http://iotdk.intel.com/repos/1.1/intelgalactic-dev" > /etc/opkg/mraa-upm.conf
+opkg update
+opkg install libmraa0
+```
+
+You can also install just the node.js mraa module by using npm. You will need a
+C++ compiler and the node development headers, however it's not required to
+have SWIG installed.
+
+```bash
+npm install mraa
+```
+
 Compiling
 =========