Add PKGBUILD for journalctl-last-invocation

This commit is contained in:
Reinout Meliesie 2026-05-15 14:08:19 +02:00
commit 2a372676cc
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6

View file

@ -0,0 +1,17 @@
# Maintainer: Reinout Meliesie <rei@kernelmaft.com>
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/"
}