From 2a372676cc14097053919585fb8b3a2b42cc3f90 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Fri, 15 May 2026 14:08:19 +0200 Subject: [PATCH] Add PKGBUILD for journalctl-last-invocation --- journalctl-last-invocation/PKGBUILD | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 journalctl-last-invocation/PKGBUILD diff --git a/journalctl-last-invocation/PKGBUILD b/journalctl-last-invocation/PKGBUILD new file mode 100644 index 0000000..d65a391 --- /dev/null +++ b/journalctl-last-invocation/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Reinout Meliesie + +pkgname=journalctl-last-invocation +pkgver=20260515 +pkgrel=1 +pkgdesc='Small utility to show systemd journal entries only for the last invocation of a unit.' +arch=(any) +url='https://kernelmaft.com/forgejo/zedfrigg/linux-utils' +license=(GPL-3.0-only) +depends=(systemd zsh) +source=(journalctl-last-invocation) +sha256sums=(SKIP) + +package() { + mkdir -p "$pkgdir/usr/bin/" + install journalctl-last-invocation "$pkgdir/usr/bin/" +}