From f51248b9994c3a806daff2d0550ae5e409e72893 Mon Sep 17 00:00:00 2001 From: Leo Arias Date: Mon, 24 Apr 2017 03:48:41 +0000 Subject: [PATCH] Add the packaging metadata to build the nheko snap --- snap/snapcraft.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 snap/snapcraft.yaml diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml new file mode 100644 index 00000000..a25f1013 --- /dev/null +++ b/snap/snapcraft.yaml @@ -0,0 +1,23 @@ +name: nheko +version: master +summary: Desktop client for the Matrix protocol +description: | + The motivation behind the project is to provide a native desktop app for + Matrix that feels more like a mainstream chat app (Riot, Telegram etc) and + less like an IRC client. + +grade: devel # must be 'stable' to release into candidate/stable channels +confinement: strict + +apps: + nheko: + command: desktop-launch $SNAP/nheko + plugs: [network, network-bind, x11, unity7, home] + +parts: + nheko: + source: . + plugin: cmake + build-packages: [gcc] + artifacts: [nheko] + after: [desktop-qt5]