btop/snap/snapcraft.yaml

65 lines
1.4 KiB
YAML
Raw Normal View History

2021-09-18 19:48:21 +02: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
2024-03-13 16:49:38 +01:00
base: core22
2021-09-18 19:48:21 +02:00
grade: stable
confinement: strict
compression: lzo
architectures:
2022-04-24 21:22:55 +02:00
- build-on: amd64
2022-08-21 21:56:21 +02:00
- build-on: arm64
- build-on: armhf
2022-08-23 16:43:39 +02:00
- build-on: ppc64el
- build-on: s390x
2021-09-18 21:30:16 +02:00
package-repositories:
- type: apt
ppa: ubuntu-toolchain-r/test
2021-09-26 23:34:39 +02:00
2021-09-18 19:48:21 +02:00
apps:
btop:
2022-08-21 22:02:48 +02:00
command: usr/local/bin/btop
2021-09-24 23:58:26 +02:00
environment:
LC_ALL: C.UTF-8
2021-09-26 23:34:39 +02:00
LANG: C.UTF-8
plugs:
2021-09-18 19:48:21 +02:00
- mount-observe
- process-control
- system-observe
- hardware-observe
- network
2021-09-26 19:54:58 +02:00
- network-observe
2021-09-18 19:48:21 +02:00
- home
2021-11-28 20:35:08 +01:00
- removable-media
- opengl
2021-09-26 23:34:39 +02:00
2021-09-18 19:48:21 +02:00
parts:
2021-09-26 23:34:39 +02:00
btop:
2021-09-18 19:48:21 +02:00
source: https://github.com/aristocratos/btop
2021-09-18 21:19:50 +02:00
source-type: git
2021-09-23 22:21:46 +02:00
plugin: make
make-parameters:
2024-01-03 16:01:13 +01:00
- CXX=g++-11
2021-09-23 22:21:46 +02:00
- PREFIX=/usr/local
2021-09-26 23:01:50 +02:00
- STATIC=true
- ADDFLAGS="-D SNAPPED"
# Add 'lowdown' to build dependencies as soon at Snap builder updates from
# Ubuntu 20.04 "Focal" to something newer that has Lowdown included
build-packages:
2021-09-26 23:34:39 +02:00
- coreutils
- sed
- git
- build-essential
- gcc-11
2021-09-18 19:48:21 +02:00
- g++-11
2021-09-18 19:48:21 +02:00
override-pull: |
snapcraftctl pull
snapcraftctl set-version "$(git describe --tags | sed 's/^v//' | cut -d "-" -f1)"