aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-01-11 14:23:17 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-11 15:17:40 +0100
commit8cf3911cbefeb03b833da457a94912724c75ebab (patch)
tree95635d19cefd0ee7c3090ba58100d986117121ba
parentc8a123c714a68683e3cc275d28ce028a2ade4b48 (diff)
downloadaports-8cf3911cbefeb03b833da457a94912724c75ebab.tar.bz2
aports-8cf3911cbefeb03b833da457a94912724c75ebab.tar.xz
testing/broot: new aport
https://github.com/Canop/broot New way to see and navigate directory trees
-rw-r--r--testing/broot/APKBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/broot/APKBUILD b/testing/broot/APKBUILD
new file mode 100644
index 0000000000..89c347ebb7
--- /dev/null
+++ b/testing/broot/APKBUILD
@@ -0,0 +1,25 @@
+# Contributor: Leo <thinkabit.ukim@gmail.com>
+# Maintainer: Leo <thinkabit.ukim@gmail.com>
+pkgname=broot
+pkgver=0.11.7
+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="2c97cf97e559d1b669086c29c8fd4574ad9188ee767bb53f7d15dc18925a5617fcc24dd5aa9b8e1a7fa84f3d5eb3e262caaf0aee3498d105bf7b15f9ac546571 broot-0.11.7.tar.gz"