| author | Klaus Alexander Seistrup
<klaus@seistrup.dk> 2025-12-01 17:21:28 UTC |
| committer | Klaus Alexander Seistrup
<klaus@seistrup.dk> 2025-12-01 17:21:28 UTC |
| parent | d04efa2506dbcdd01ec96d39a20c4f0cc9aa2580 |
| .SRCINFO | +5 | -3 |
| PKGBUILD | +5 | -3 |
| offpunk-git.install | +14 | -0 |
diff --git a/.SRCINFO b/.SRCINFO index d9f8309..36b3905 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,9 +1,10 @@ pkgbase = offpunk-git pkgdesc = Fork of the command-line Gemini client AV-98 with added offline capabilities (latest commit) - pkgver = 2.6.r0.ga3623c6 - pkgrel = 2 - epoch = 5 + pkgver = 2.8.r7.g9b2dd41 + pkgrel = 1 + epoch = 6 url = https://git.sr.ht/~lioploum/offpunk + install = offpunk-git.install arch = any license = AGPL-3.0-or-later makedepends = coreutils @@ -13,6 +14,7 @@ pkgbase = offpunk-git makedepends = python-installer makedepends = python-wheel depends = file + depends = ftr-site-config depends = less depends = python depends = python-beautifulsoup4 diff --git a/PKGBUILD b/PKGBUILD index 1149c30..3db5c05 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,15 +5,16 @@ pkgname='offpunk-git' _pkgname='offpunk' -epoch=5 -pkgver=2.6.r0.ga3623c6 -pkgrel=2 +epoch=6 +pkgver=2.8.r7.g9b2dd41 +pkgrel=1 pkgdesc='Fork of the command-line Gemini client AV-98 with added offline capabilities (latest commit)' arch=('any') url='https://git.sr.ht/~lioploum/offpunk' license=('AGPL-3.0-or-later') # SPDX-License-Identifier: AGPL-3.0-or-later depends=( 'file' + 'ftr-site-config' 'less' 'python' 'python-beautifulsoup4' @@ -45,6 +46,7 @@ conflicts=('offpunk') source=("git+$url") noextract=("$_pkgname") sha256sums=('SKIP') +install="$pkgname.install" pkgver() { cd "$_pkgname" diff --git a/offpunk-git.install b/offpunk-git.install new file mode 100644 index 0000000..8dfd916 --- /dev/null +++ b/offpunk-git.install @@ -0,0 +1,14 @@ +# -*- sh -*- + +post_install() { + cat <<__EOT__ +» The ftr_site_config needed by unmerdify can be found in +» /usr/share/ftr-site-config +__EOT__ +} + +post_upgrade() { + post_install "$@" +} + +# eof