I am using Snappy ubuntu core 16.4 on my BeagleBone Black, and the latest 
version of Snapcraft for building aplications. Due to cross building 
problem I got to build my snap package on BeagleBone in Snappy classic 
shell. I found this article 
<https://dotnetdavid.wordpress.com/2013/09/16/beaglebone-black-cloud9-and-bonescript-install-guide/>
 for 
installing Bonescript on ubuntu and wrote my Snapcraft.yaml file with this 
dependencies. I changed the nodejs.py snapcraft plugin file and redirected 
it to download node version 0.8.25-linux-armv6. My snapcraft file is here:


name: someName
version: 0.0.1
summary: Show
description: Show
icon: icon.png

build-packages: [build-essential, g++, curl, libssl-dev, apache2-utils, git, 
libxml2-dev]

apps:
  someName:
    command: bin/Something
    daemon: simple
    plugs: [listener]

plugs:
  listener:
    interface: old-security
    caps: [network-listener]

parts:
  someName:
    plugin: nodejs
    source: .
    node-packages:
      - bonescript


Build is successfull with some warnings, but no errors. Problem is that the 
warnings say that express is not supported by the 0.8.* version of node. 
What node js version i can install that supports bonescript and express, 
and build without errors.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to