Skip to content

Commit

Permalink
upd(kakoune): 2023.08.05 -> 2024.05.18 (#6026)
Browse files Browse the repository at this point in the history
  • Loading branch information
vigress8 authored May 20, 2024
1 parent 645b157 commit 1de279a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
8 changes: 5 additions & 3 deletions packages/kakoune/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
pkgname = kakoune
pkgver = 2023.08.05
pkgver = 2024.05.18
pkgdesc = mawww's experiment for a better code editor
url = https://kakoune.org/
arch = amd64
arch = arm64
arch = armhf
arch = i386
source = https://github.com/mawww/kakoune/archive/refs/tags/v2023.08.05.tar.gz
source = https://github.com/mawww/kakoune/archive/refs/tags/v2024.05.18.tar.gz
replaces = kakoune
license = Unlicense
maintainer = vigress8 <[email protected]>
repology = project: kakoune
sha256sums = 1ad7bfe9e1d861115cd418cb500990ea5fa63726e998df13702e5caa8fc84356
sha256sums = 50f2920db8ab8f71556b73dfd6d53fb924f67d1c60b9882050cfecfaa3aed31f
20 changes: 12 additions & 8 deletions packages/kakoune/kakoune.pacscript
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
pkgname="kakoune"
pkgver="2023.08.05"
pkgver="2024.05.18"
pkgdesc="mawww's experiment for a better code editor"
license=('Unlicense')
repology=("project: ${pkgname}")
url="https://kakoune.org/"
arch=("amd64" "arm64" "i386")
arch=("amd64" "arm64" "armhf" "i386")
replaces=("${pkgname}")
maintainer=("vigress8 <[email protected]>")
source=("https://github.com/mawww/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=("1ad7bfe9e1d861115cd418cb500990ea5fa63726e998df13702e5caa8fc84356")
sha256sums=("50f2920db8ab8f71556b73dfd6d53fb924f67d1c60b9882050cfecfaa3aed31f")

build() {
cd "${_archive}"
cd src
make -j"${NCPU}"
make -C "${pkgname}-${pkgver}" -j"${NCPU}"
}

check() {
# A few tests fail.
make -C "${pkgname}-${pkgver}" test || :
}

package() {
cd "${_archive}"
make install DESTDIR="${pkgdir}"
make -C "${pkgname}-${pkgver}" install \
DESTDIR="${pkgdir}" PREFIX=/usr
}

0 comments on commit 1de279a

Please sign in to comment.