mirror of
https://github.com/ClementTsang/bottom
synced 2025-03-01 05:37:17 +00:00
25 lines
656 B
Text
25 lines
656 B
Text
|
# Maintainer: Clement Tsang (xoronth) <cjhtsang@uwaterloo.ca>
|
||
|
|
||
|
pkgname=bottom-bin
|
||
|
pkgver=$version
|
||
|
pkgrel=0
|
||
|
pkgdesc='A cross-platform graphical process/system monitor with a customizable interface and a multitude of features.'
|
||
|
provides=('bottom')
|
||
|
conflicts=('bottom')
|
||
|
arch=('x86_64')
|
||
|
url="https://github.com/ClementTsang/bottom"
|
||
|
license=(MIT)
|
||
|
source=(
|
||
|
archive-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/bottom_x86_64-unknown-linux-gnu.tar.gz
|
||
|
LICENSE::${url}/raw/${pkgver}/LICENSE
|
||
|
)
|
||
|
sha512sums=(
|
||
|
'$hash'
|
||
|
SKIP
|
||
|
)
|
||
|
|
||
|
package() {
|
||
|
install -Dm755 btm "$pkgdir"/usr/bin/btm
|
||
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||
|
}
|