From f33880c235202f559678a0362c84aedf18145546 Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Sun, 1 Mar 2015 17:31:17 +0000 Subject: [PATCH] README.md: add -dev repository information Signed-off-by: Brendan Le Foll --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 581a406..6a665d6 100644 --- 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 =========