mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-28 22:55:55 +03:00
92 lines
2.2 KiB
YAML
92 lines
2.2 KiB
YAML
name: glances
|
|
adopt-info: glances
|
|
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.
|
|
|
|
base: core20
|
|
grade: stable
|
|
confinement: strict
|
|
|
|
apps:
|
|
glances:
|
|
command: bin/glances-launch $SNAP/bin/glances
|
|
plugs:
|
|
- network
|
|
- system-observe
|
|
- mount-observe
|
|
- hardware-observe
|
|
- log-observe
|
|
- network-observe
|
|
- physical-memory-observe
|
|
- upower-observe
|
|
- home
|
|
- network-bind
|
|
environment:
|
|
LANG: C.UTF-8
|
|
LC_ALL: C.UTF-8
|
|
|
|
plugs:
|
|
home-glances-config:
|
|
interface: personal-files
|
|
read:
|
|
- $HOME/.config/glances/glances.conf
|
|
etc-glances-config:
|
|
interface: system-files
|
|
read:
|
|
- /etc/glances/glances.conf
|
|
|
|
parts:
|
|
glances:
|
|
after:
|
|
- selective-checkout
|
|
plugin: python
|
|
source: .
|
|
# FIXME: Theoretically this also replaces `summary` and `description`
|
|
# keys, however due to the following bug we still need to keep
|
|
# them until it is fixed.
|
|
# https://bugs.launchpad.net/snapcraft/+bug/1813364
|
|
parse-info: [setup.py]
|
|
override-pull: |
|
|
snapcraftctl pull
|
|
"$SNAPCRAFT_STAGE"/scriptlets/selective-checkout
|
|
bottle:
|
|
plugin: python
|
|
source: https://github.com/bottlepy/bottle.git
|
|
source-branch: release-0.12
|
|
source-depth: 1
|
|
override-build: |
|
|
mkdir -p $SNAPCRAFT_PART_BUILD/dist
|
|
cp -r $SNAPCRAFT_PART_BUILD/dist $SNAPCRAFT_PART_INSTALL/bottle-dist
|
|
organize:
|
|
bottle-dist: bottle/dist
|
|
|
|
docker:
|
|
plugin: python
|
|
source: https://github.com/docker/docker-py.git
|
|
source-tag: '3.7.3'
|
|
source-depth: 1
|
|
override-build: |
|
|
mkdir -p $SNAPCRAFT_PART_BUILD/dist
|
|
cp -r $SNAPCRAFT_PART_BUILD/dist $SNAPCRAFT_PART_INSTALL/docker-dist
|
|
organize:
|
|
bottle-dist: docker/dist
|
|
|
|
launchers:
|
|
source: snap/local/launchers
|
|
plugin: dump
|
|
organize:
|
|
'*': bin/
|
|
|
|
selective-checkout:
|
|
plugin: nil
|
|
build-packages:
|
|
- git
|
|
stage-snaps:
|
|
- selective-checkout
|
|
prime:
|
|
- -*
|