From f0204aeb0965eba18c2ce52bb542b89ec9e6eae7 Mon Sep 17 00:00:00 2001 From: dmarakom6 Date: Tue, 5 Jan 2021 23:24:52 +0200 Subject: [PATCH] Added snapcraft.yaml --- 3.0/snap/snapcraft.yaml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 3.0/snap/snapcraft.yaml diff --git a/3.0/snap/snapcraft.yaml b/3.0/snap/snapcraft.yaml new file mode 100644 index 0000000..a82d48b --- /dev/null +++ b/3.0/snap/snapcraft.yaml @@ -0,0 +1,37 @@ +name: shellnotes +base: core18 +version: '3.0' +summary: An easy, simple and fast way to keep notes directly via terminal. +description: | + Shellnotes is a note system for linux users, that helps you take your notes from wherever you are, + whenever you want, using your favourite text editor. +title: shellnotes (note system) +grade: stable +confinement: strict +architectures: [ all ] + +apps: + shellnotes: + command: shellnotes + +parts: + movies: + source: . + plugin: dump + stage-packages: [git] + build-packages: [g++, git, apt, wget, curl, python] + + +parts: + shellnotes: + source: . + plugin: dump + override-pull: | + snapcraftctl pull + pwd + chmod +x ./shellnotes.sh + override-build: | + gem install csv -I $SNAPCRAFT_PART_INSTALL + snapcraftctl build + +