1
0
mirror of https://github.com/danog/ytop.git synced 2024-12-03 18:07:56 +01:00
ytop/package-publisher/templates/aur-bin

19 lines
504 B
Plaintext
Raw Normal View History

2020-01-25 18:04:45 +01:00
# 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}"
}