summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKlaus Alexander Seistrup2024-01-31 15:01:49 +0100
committerKlaus Alexander Seistrup2024-01-31 15:01:49 +0100
commit995b565600c70f7260235a65049395b4db790a69 (patch)
tree5ab78e5bf52d602d0786c60034e0400bed41fe88
parent2f0f1b1e63d0dc13402c0668b9b8dfe7f06a821b (diff)
downloadaur-995b565600c70f7260235a65049395b4db790a69.tar.gz
Update installation instructions to reflect reality
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD4
-rw-r--r--jedstate-git.install12
3 files changed, 9 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7e452a3e43b9..258f49534a55 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,12 @@
pkgbase = jedstate-git
pkgdesc = S-Lang module for the JED editor to remember its cursor position across invocations (built from latest commit)
- pkgver = 0.9.6.r2.g09a671e
+ pkgver = 0.9.9.r4.g9988db3
pkgrel = 2
url = https://codeberg.org/kas/jedstate
install = jedstate-git.install
arch = any
license = AGPL-3.0-or-later
makedepends = git
- makedepends = jed
depends = jed
provides = jedstate
conflicts = jedstate
diff --git a/PKGBUILD b/PKGBUILD
index 9bf4308a9965..1a40a42e8d45 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,14 +3,14 @@
pkgname='jedstate-git'
_pkgname="${pkgname/-git/}"
-pkgver=0.9.6.r2.g09a671e
+pkgver=0.9.9.r4.g9988db3
pkgrel=2
pkgdesc='S-Lang module for the JED editor to remember its cursor position across invocations (built from latest commit)'
arch=('any')
url='https://codeberg.org/kas/jedstate'
license=('AGPL-3.0-or-later') # SPDX-License-Identifier: AGPL-3.0-or-later
depends=('jed')
-makedepends=('git' 'jed')
+makedepends=('git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+$url.git")
diff --git a/jedstate-git.install b/jedstate-git.install
index 7c5549a90e63..2bce3ac7e293 100644
--- a/jedstate-git.install
+++ b/jedstate-git.install
@@ -1,13 +1,13 @@
# -*- sh -*-
pre_install() {
- cat <<EOF >&2
-NB: In order to use this package you will have to edit
- startup_hook() and exit_hook() of your ~/.jedrc and
- also include two autoload() stanzas.
+ cat <<EOF
+NB: In order to use this package you will have to edit add a
+ require("jedstate") to your existing ~/.jedrc, and also
+ edit (or add) startup_hook() and exit_hook().
- See /usr/share/doc/jedstate-git/jedstate-hooks.sl
- for an example.
+ Working sample hooks and a README can be found in the
+ /usr/share/doc/jedstate-git/ directory.
EOF
}