blob: a04d6ebf6fc5e482849130ae567b550283b95f10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Martin Minka <martin dot minka at gmail dot com>
pkgname=hl-log-viewer-bin
pkgver='v0.23.2'
pkgrel=1
pkgdesc='Log viewer which translates JSON logs into pretty human-readable representation'
url='https://github.com/pamburus/hl'
conflicts=('hl-log-viewer')
depends=()
makedepends=()
arch=('x86_64' 'aarch64')
license=('MIT')
source_x86_64=("$pkgname-$pkgver.tar.gz::https://github.com/pamburus/hl/releases/download/${pkgver//_/-}/hl-linux-x86_64-gnu.tar.gz")
source_aarch64=("$pkgname-$pkgver.tar.gz::https://github.com/pamburus/hl/releases/download/${pkgver//_/-}/hl-linux-arm64-gnu.tar.gz")
sha512sums_x86_64=('e14ebe088f88855f67004a5b6737ecc9526537ad87054e086d9969f43a23a686b44c8610bcc4bbd9abe2ce8add85a5c3bade58f645fd36cd687d1b7cb4509694')
sha512sums_aarch64=('8c69566d682d20f9b6485e417d319f49b959cded1e0664587e6eab37c02ec896942a1dac82d9074abb1fb8ef889b357b8bfda64309c753424c2dc4e5a473040a')
package() {
install -Dm0755 "hl" "$pkgdir/usr/bin/hl"
}
|