mirror of
https://github.com/danog/ytop.git
synced 2024-12-03 18:07:56 +01:00
19 lines
504 B
Plaintext
19 lines
504 B
Plaintext
|
# Maintainer: Caleb Bassi <calebjbassi@gmail.com>
|
||
|
|
||
|
pkgname=ytop-bin
|
||
|
_pkgname=${pkgname%-bin}
|
||
|
pkgver={{ VERSION }}
|
||
|
pkgrel=1
|
||
|
pkgdesc="A TUI system monitor written in Rust"
|
||
|
arch=(x86_64)
|
||
|
url="https://github.com/cjbassi/ytop"
|
||
|
license=("MIT")
|
||
|
provides=(${_pkgname})
|
||
|
conflicts=(${_pkgname})
|
||
|
source=("${_pkgname}::${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}-${arch}-unknown-linux-gnu.tar.gz")
|
||
|
sha256sums=("{{ SHA256 }}")
|
||
|
|
||
|
package() {
|
||
|
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
|
||
|
}
|