mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-30 08:00:20 +00:00
b2a00d49f1
Automatically builds packages for AUR, chocolatey, and homebrew on release.
24 lines
656 B
Text
24 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
|
|
}
|