Package Details: btop-git 1.4.4.r1292.bdddfc4-1

Git Clone URL: https://aur.archlinux.org/btop-git.git (read-only, click to copy)
Package Base: btop-git
Description: A monitor of resources
Upstream URL: https://github.com/aristocratos/btop
Licenses: Apache-2.0
Conflicts: btop
Provides: btop
Submitter: vnepogodin
Maintainer: vnepogodin
Last Packager: vnepogodin
Votes: 13
Popularity: 0.38
First Submitted: 2021-09-24 18:57 (UTC)
Last Updated: 2025-09-11 12:00 (UTC)

Latest Comments

« First ‹ Previous 1 2

vnepogodin commented on 2023-12-28 22:33 (UTC)

@tronicdude

btop-gpu-git and btop-git are not same "software". If upstream btop enables GPU support by default I'll also have it here

tronicdude commented on 2023-12-28 22:30 (UTC)

If one has rocm-smi-lib or nvidia-utils installed this should build with GPU support, like btop-gpu-git. That one doesn't allow install if you don't have one or the other. Two repos for the same software doesn't make sense. There should just be this repo, with both of those as optional dependencies for GPU support.

vnepogodin commented on 2023-06-03 22:19 (UTC)

@Roshakk many thanks! I've updated PKGBUILD

Roshakk commented on 2023-06-03 19:41 (UTC)

Btop recently has changed to a submodule approach to the fmt library.

it is necessary to include the submodule in the sources.


source=("${pkgname}::git+https://github.com/aristocratos/btop.git"
        "fmtlib::git+https://github.com/fmtlib/fmt")
sha512sums=('SKIP' 'SKIP')

prepare() {
  cd "${srcdir}/${pkgname}"
  git submodule init
  git config submodule.fmtlib/fmt.url "${srcdir}/fmt"
  git -c protocol.file.allow=always submodule update
}