From 9685a4836ff80415c36164425ca954b9f63598c9 Mon Sep 17 00:00:00 2001 From: Leo Arias Date: Wed, 28 Jun 2017 22:10:25 +0000 Subject: [PATCH] Add the packaging metadata to build the bcoin snap --- snap/snapcraft.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 snap/snapcraft.yaml diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml new file mode 100644 index 000000000..0cf7fd240 --- /dev/null +++ b/snap/snapcraft.yaml @@ -0,0 +1,21 @@ +name: bcoin +version: git +summary: A fullnode Bitcoin implementation for miners, wallets, and exchanges +description: | + Bcoin is an alternative implementation of the bitcoin protocol, written in + node.js. + +grade: devel # must be 'stable' to release into candidate/stable channels +confinement: strict + +apps: + bcoin: + command: bcoin + plugs: [network, network-bind] + +parts: + bcoin: + source: . + plugin: nodejs + build-packages: [python, gcc] + node-engine: 7.9.0 \ No newline at end of file