This commit is contained in:
Matthieu Jolimaitre 2025-07-23 11:35:51 +02:00
commit aa8e3ef7d6
12 changed files with 479 additions and 0 deletions

View file

@ -0,0 +1,19 @@
# Maintainer: JOLIMAITRE Matthieu <matthieu@imagevo.fr>
pkgname="dated-bin"
pkgver=0.1.0
pkgrel=1
pkgdesc="Minimal CLI for prefixing dates to log lines."
url="https://git.barnulf.net/mb/dated"
arch=("x86_64")
license=('MIT')
source=("https://git.barnulf.net/api/packages/mb/generic/dated/latest/dated-x86_64-unknown-linux-musl.zip")
sha256sums=("SKIP")
provides=("dated")
package() {
install -Dm755 dated "$pkgdir/usr/bin/dated"
}
pkgver() {
./dated --version | head -n 1 | cut -d ' ' -f 2
}