1
0
mirror of https://github.com/danog/ytop.git synced 2024-12-02 09:27:48 +01:00
ytop/package-publisher/templates/aur-bin
2020-02-15 06:57:05 -08:00

19 lines
527 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=("{{ LINUX_SHA256 }}")
package() {
install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
}