Package Details: btop-git 1.3.2.r1032.d168073-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: 12
Popularity: 0.50
First Submitted: 2021-09-24 18:57 (UTC)
Last Updated: 2024-03-24 21:34 (UTC)

Required by (2)

Sources (1)

Latest Comments

« First ‹ Previous 1 2

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
}