From bb41f5c4e5725573402e7cf5df9b9d8c36d6ee9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Miku=C5=82a?= Date: Tue, 2 Oct 2018 20:46:13 +0200 Subject: [PATCH] Add snapcraft.yaml (#836) --- snapcraft.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 snapcraft.yaml diff --git a/snapcraft.yaml b/snapcraft.yaml new file mode 100644 index 00000000..3d9e892d --- /dev/null +++ b/snapcraft.yaml @@ -0,0 +1,25 @@ +name: thefuck +version: stable +version-script: git -C parts/thefuck/build describe --abbrev=0 --tags +summary: Magnificent app which corrects your previous console command. +description: | + The Fuck tries to match a rule for the previous command, + creates a new command using the matched rule and runs it. + +grade: stable +confinement: classic + +apps: + thefuck: + command: bin/thefuck + environment: + PYTHONIOENCODING: utf-8 + fuck: + command: bin/fuck + environment: + PYTHONIOENCODING: utf-8 + +parts: + thefuck: + source: https://github.com/nvbn/thefuck.git + plugin: python