aboutsummaryrefslogtreecommitdiffstats
path: root/testing/broot/APKBUILD
blob: ec78b8c40142c4e301ea2868a7107e0ab6878828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=broot
pkgver=0.13.4
pkgrel=0
pkgdesc="New way to see and navigate directory trees"
url="https://github.com/Canop/broot"
arch="all !s390x"
license="MIT"
makedepends="cargo"
source="$pkgname-$pkgver.tar.gz::https://crates.io/api/v1/crates/broot/$pkgver/download"

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

check() {
	cargo test --release --locked
}

package() {
	install -Dm0755 target/release/broot "$pkgdir"/usr/bin/broot
}

sha512sums="400cb67283a5cd23ac9f9c6d765d477c719a72c5cf530c72356e517ad153e24cc03b0b4d54dd746cbaad8333154bf7cbcb41d6f4d280c7ce53567363ba6031db  broot-0.13.4.tar.gz"