mirror of
https://github.com/danog/ytop.git
synced 2024-12-02 17:38:00 +01:00
19 lines
521 B
Plaintext
19 lines
521 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}-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}-${arch}-unknown-linux-gnu.tar.gz")
|
|
sha256sums=("{{ SHA256 }}")
|
|
|
|
package() {
|
|
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
|
|
}
|