Package Details: clj-kondo-bin 2024.03.13-1

Git Clone URL: https://aur.archlinux.org/clj-kondo-bin.git (read-only, click to copy)
Package Base: clj-kondo-bin
Description: A minimal and opinionated linter for Clojure code that sparks joy.
Upstream URL: https://github.com/borkdude/clj-kondo
Licenses: EPL
Conflicts: clj-kondo
Provides: clj-kondo
Submitter: dharrigan
Maintainer: dharrigan
Last Packager: dharrigan
Votes: 9
Popularity: 0.000229
First Submitted: 2019-06-28 09:35 (UTC)
Last Updated: 2024-03-13 13:06 (UTC)

Latest Comments

r6eve commented on 2021-01-21 12:02 (UTC)

@dharrigan Thank you for the quick fix!

dharrigan commented on 2021-01-21 06:53 (UTC)

Hi,

Thank you for your feedback and good spot! I've fixed that now in rel 2 of the package, so I trust once you upgrade, all will be well.

-=david=-

r6eve commented on 2021-01-21 04:10 (UTC)

After installing, the path is /usr/bin/clj-kondo-bin . Is this intentional? I'd prefer /usr/bin/clj-kondo .

diff --git a/PKGBUILD b/PKGBUILD
index 93bbc0a..a2312de 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,5 +16,5 @@ source_x86_64=("${url}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-li
 sha256sums_x86_64=('0fe17d85eea491f70aa57c8b26c74e7406e1f8ab538ba4d53e4deb79d8129325')

 package() {
-  install -Dm755 "${srcdir}/${pkgname%-bin}" "${pkgdir}/usr/bin/${pkgname%-bin/}"
+  install -Dm755 "${srcdir}/${pkgname%-bin}" "${pkgdir}/usr/bin/${pkgname%-bin}"
 }