From 6fc69d8c66cdebc58640d74ee87dd991082fec1a Mon Sep 17 00:00:00 2001 From: Leo Arias Date: Thu, 15 Jun 2017 03:19:48 +0000 Subject: [PATCH] Add the packaging metadata to build the electrum 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..b9a594ffe --- /dev/null +++ b/snap/snapcraft.yaml @@ -0,0 +1,21 @@ +name: electrum +version: master +summary: Bitcoin thin client +description: | + Lightweight Bitcoin client + +grade: devel # must be 'stable' to release into candidate/stable channels +confinement: strict + +apps: + electrum: + command: desktop-launch electrum + plugs: [network, network-bind] + +parts: + electrum: + source: . + plugin: python + python-version: python2 + stage-packages: [python-qt4] + after: [desktop-qt4]