btop/snap/snapcraft.yaml

71 lines
1.4 KiB
YAML
Raw Normal View History

2021-09-19 05:48:21 +12:00
name: btop
adopt-info: btop
summary: Resource monitor that shows usage and stats
description: |
Resource monitor that shows usage and stats for processor, memory, disks, network and processes.
C++ version and continuation of bashtop and bpytop.
license: Apache-2.0
2021-09-28 03:17:54 +13:00
#assumes:
# - command-chain
2021-09-19 05:48:21 +12:00
base: core20
grade: stable
confinement: strict
compression: lzo
architectures:
- build-on: amd64
- build-on: arm64
- build-on: armhf
- build-on: ppc64el
- build-on: s390x
2021-09-19 07:30:16 +12:00
package-repositories:
- type: apt
ppa: ubuntu-toolchain-r/test
2021-09-27 10:34:39 +13:00
2021-09-19 05:48:21 +12:00
apps:
btop:
2021-09-19 10:44:29 +12:00
command: usr/local/bin/btop
2021-09-28 03:17:54 +13:00
# command-chain:
# - bin/homeishome-launch
2021-09-25 09:58:26 +12:00
environment:
LC_ALL: C.UTF-8
2021-09-27 10:34:39 +13:00
LANG: C.UTF-8
plugs:
2021-09-19 05:48:21 +12:00
- mount-observe
- process-control
- system-observe
- hardware-observe
- network
2021-09-27 06:54:58 +13:00
- network-observe
2021-09-19 05:48:21 +12:00
- physical-memory-observe
- home
2021-09-27 10:34:39 +13:00
2021-09-19 05:48:21 +12:00
parts:
2021-09-27 10:34:39 +13:00
btop:
2021-09-19 05:48:21 +12:00
source: https://github.com/aristocratos/btop
2021-09-19 07:19:50 +12:00
source-type: git
2021-09-24 08:21:46 +12:00
plugin: make
make-parameters:
- PREFIX=/usr/local
2021-09-27 10:01:50 +13:00
- STATIC=true
build-packages:
2021-09-27 10:34:39 +13:00
- coreutils
- sed
- git
- build-essential
- gcc-11
2021-09-19 05:48:21 +12:00
- g++-11
override-pull: |
snapcraftctl pull
snapcraftctl set-version "$(git describe --tags | sed 's/^v//' | cut -d "-" -f1)"
2021-09-27 10:34:39 +13:00
2021-09-28 03:17:54 +13:00
# homeishome-launch:
# plugin: nil
# stage-snaps:
# - homeishome-launch
2021-09-27 10:34:39 +13:00