aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ytop/APKBUILD
blob: 6b9d58565a592b33b06a4fc60a41fc8a2c2370cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Contributor: Michał Polański <michal@polanski.me>
# Maintainer: Michał Polański <michal@polanski.me>
pkgname=ytop
pkgver=0.6.0
pkgrel=0
pkgdesc="A TUI system monitor written in Rust"
url="https://github.com/cjbassi/ytop"
arch="all !s390x !mips !mips64" # limited by cargo
license="MIT"
options="!check" # no test suite
makedepends="cargo"
source="$pkgname-$pkgver.tar.gz::https://github.com/cjbassi/ytop/archive/$pkgver.tar.gz"

build() {
	cargo build --release --locked --all-features
}

package() {
	install -Dm755 target/release/ytop "$pkgdir"/usr/bin/ytop
}

sha512sums="da91c6645d31622e3a903963ffee9adffb76ecb15e650185994d962527af0b1419b5e3f50a1aed9de512b5fff5bc3df3b6951b173edfefd3c7b6e2624d07d6de  ytop-0.6.0.tar.gz"