[arch-commits] Commit in (5 files)

Alexander Rødseth arodseth at gemini.archlinux.org
Mon Oct 11 13:41:15 UTC 2021


    Date: Monday, October 11, 2021 @ 13:41:15
  Author: arodseth
Revision: 1029463

Add the Dune shell

* 552 stars on GitHub
* Pretty fun
* Active and friendly upstream
* Written in Rust

Added:
  dunesh/
  dunesh/repos/
  dunesh/repos/community-x86_64/
  dunesh/trunk/
  dunesh/trunk/PKGBUILD

----------+
 PKGBUILD |   25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

Added: dunesh/trunk/PKGBUILD
===================================================================
--- dunesh/trunk/PKGBUILD	                        (rev 0)
+++ dunesh/trunk/PKGBUILD	2021-10-11 13:41:15 UTC (rev 1029463)
@@ -0,0 +1,25 @@
+# Maintainer: Alexander F. Rødseth <xyproto at archlinux.org>
+
+pkgname=dunesh
+pkgver=0.0.1
+pkgrel=1
+pkgdesc='The cozy shell'
+arch=(x86_64)
+url='https://github.com/adam-mcdaniel/dune'
+license=(APACHE)
+makedepends=(git rust)
+# No release tarballs or git tags are available yet. Currently using the latest commit at 2021-10-11.
+# Related comment: https://github.com/adam-mcdaniel/dune/issues/29#issuecomment-940023556
+source=("git+$url#commit=5f96530bf4f3e55274f5a430d1919d5edc933829")
+b2sums=(SKIP)
+
+build() {
+  cargo build --manifest-path dune/Cargo.toml --release
+}
+
+package() {
+  install -Dm755 dune/target/release/$pkgname \
+    "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 dune/LICENSE \
+    "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



More information about the arch-commits mailing list