| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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
- base: core24
- grade: stable
- confinement: strict
- compression: lzo
- contact: https://github.com/kz6fittycent/btop/issues
- issues: https://github.com/kz6fittycent/btop/issues
- source-code: https://github.com/aristocratos/btop
- platforms:
- amd64:
- build-on: [amd64]
- build-for: [amd64]
- arm64:
- build-on: [arm64]
- build-for: [arm64]
- apps:
- btop:
- command: usr/local/bin/btop
- environment:
- LC_ALL: C.UTF-8
- LANG: C.UTF-8
- plugs:
- - mount-observe
- - process-control
- - system-observe
- - hardware-observe
- - network
- - network-observe
- - home
- - removable-media
- - opengl
- parts:
- btop:
- source: https://github.com/aristocratos/btop
- source-type: git
- plugin: make
- make-parameters:
- - CC=gcc-14
- - CXX=g++-14
- - PREFIX=/usr/local
- - STATIC=true #required
- - ADDFLAGS="-D SNAPPED" #required
- build-packages:
- - coreutils
- - sed
- - git
- - build-essential
- - gcc-14
- - g++-14
-
- override-pull: |
- craftctl default
- craftctl set version="$(git describe --tags | sed 's/^v//' | cut -d "-" -f1)"
|