Package Details: kohighlights 2.3.1.0-2

Git Clone URL: https://aur.archlinux.org/kohighlights.git (read-only, click to copy)
Package Base: kohighlights
Description: Utility for viewing Koreader's highlights and/or export them to simple text, html, csv or markdown files.
Upstream URL: http://www.noembryo.com/apps.php?kohighlights
Keywords: e-books export highlights kohighlights koreader notes
Licenses: MIT
Submitter: paulequilibrio
Maintainer: paulequilibrio
Last Packager: paulequilibrio
Votes: 1
Popularity: 0.018203
First Submitted: 2025-09-14 23:44 (UTC)
Last Updated: 2026-03-20 05:11 (UTC)

Latest Comments

paulequilibrio commented on 2026-03-20 05:13 (UTC)

@ivank thanks for the patch.

ivank commented on 2026-03-09 13:54 (UTC)

Hello,

I get the following error:

error: failed to open file `/opt/kohighlights/pyproject.toml`: Permission denied (os error 13)

Here is the patch to fix it:

diff --git a/PKGBUILD b/PKGBUILD
index d1ba8ae..e148ac9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -34,7 +34,7 @@ install='post.install'
 prepare() {
   unzip -qo "$srcdir/$pkgname-$pkgver.zip" -d "$srcdir/${pkgname}-${pkgver}"
   bash patch.sh "${pkgname}-${pkgver}"
-  cp "${srcdir}/pyproject.toml" "${srcdir}/${pkgname}-${pkgver}/pyproject.toml"
+  install -m 644 "${srcdir}/pyproject.toml" "${srcdir}/${pkgname}-${pkgver}/pyproject.toml"
 }

 package() {