From f6e1fbd36a4430ce45958b9315b6d7f3d94d35f9 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sat, 24 Jun 2017 18:47:16 +0200 Subject: [PATCH] First snamp with PsUtil and Bottle --- snap/snapcraft.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 snap/snapcraft.yaml diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml new file mode 100644 index 00000000..7793010e --- /dev/null +++ b/snap/snapcraft.yaml @@ -0,0 +1,29 @@ +name: glances +version: '2.10' +summary: Glances an Eye on your system. A top/htop alternative. +description: | + Glances is a cross-platform monitoring tool which aims to present + a maximum of information in a minimum of space through a curses or + Web based interface. It can adapt dynamically the displayed information + depending on the user interface size. + +grade: stable +confinement: strict + +apps: + glances: + command: bin/glances + plugs: + - network + +parts: + glances: + plugin: python + source: https://github.com/nicolargo/glances.git + psutil: + plugin: python + source: https://github.com/markokr/spongeshaker.git + build-packages: [gcc, python-dev, python-pip] + bottle: + plugin: python + source: https://github.com/bottlepy/bottle.git -- GitLab