[arch-commits] Commit in kakoune/trunk (PKGBUILD)

Maxim Baz maximbaz at gemini.archlinux.org
Sat Aug 28 10:38:37 UTC 2021


    Date: Saturday, August 28, 2021 @ 10:38:37
  Author: maximbaz
Revision: 1007669

upgpkg: kakoune 2021.08.28-1

Modified:
  kakoune/trunk/PKGBUILD

----------+
 PKGBUILD |   24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-08-28 10:06:26 UTC (rev 1007668)
+++ PKGBUILD	2021-08-28 10:38:37 UTC (rev 1007669)
@@ -2,37 +2,37 @@
 # Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
 # Contributor: Frank Lenormand <lenormf at gmail dot com>
 pkgname=kakoune
-pkgver=2020.09.01
+pkgver=2021.08.28
 pkgrel=1
 pkgdesc="Multiple-selection, UNIX-flavored modal editor"
 arch=("x86_64")
 url="https://kakoune.org/"
 license=("custom:unlicense")
-depends=("ncurses")
 optdepends=(
-    "aspell: spell checking support"
-    "clang: C/C++ completion and diagnostics support"
+    "aspell: spell check, correct text"
+    "clang: error reporting and diagnostics, completion"
+    "editorconfig-core-c: set formatting options project-wide"
+    "git: display and cycle through hunks, blame lines, handle file status"
     "kak-lsp: LSP client"
-    "ranger: filesystem explorer"
-    "tmux: splitting and creating windows"
-    "xdotool: X11 utility to focus arbitrary kakoune clients"
-    "xorg-xmessage: display debug messages in a new window"
+    "tmux: split windows, spawn tabs"
+    "xdotool: X11 window management"
+    "xorg-xmessage: print detailed crash information in a separate window"
 )
 source=("https://github.com/mawww/kakoune/releases/download/v${pkgver}/kakoune-${pkgver}.tar.bz2")
-sha256sums=('861a89c56b5d0ae39628cb706c37a8b55bc289bfbe3c72466ad0e2757ccf0175')
+sha256sums=('6f6ed7dfd8c5723210dbd848708acf03af4b847016fd3ede96b2a89ad32276cb')
 
 build() {
     cd "${pkgname}-${pkgver}/src"
-    make debug=no
+    make
 }
 
 check() {
     cd "${pkgname}-${pkgver}/src"
-    make debug=no test
+    make test
 }
 
 package() {
     cd "${pkgname}-${pkgver}/src"
-    make debug=no install-strip DESTDIR="${pkgdir}" PREFIX=/usr
+    make install-strip DESTDIR="${pkgdir}" PREFIX=/usr
     install -D ../UNLICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }



More information about the arch-commits mailing list