blob: 17966a1748453b6932b96929e3ea0ecdb659f905 (
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.0
pkgrel=0
pkgdesc="New way to see and navigate directory trees"
url="https://github.com/Canop/broot"
arch="all !s390x !x86"
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="509f6780cc51ed8df6dc7864342cb7e16dc26ad413f3512f601143786eeee415cb21e04d7f2a994d0832cd649d7a1085e27b678e50a86ea33acebe4422ed19b7 broot-0.13.0.tar.gz"
|