summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1aa76ce0882f1d31d93c9e007e41d821b1d69d34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>

pkgname=yaloco
pkgver=1.3.0
pkgrel=1
pkgdesc='Yet Another Log Colorizer'
arch=(x86_64)
url='https://github.com/xyproto/yaloco'
license=(MIT)
makedepends=(git go)
source=("git+$url#commit=88cb5e00cce2d6b8feb77591ce0cec5fd3e31b74") # tag: v1.3.0
sha256sums=('SKIP')

build() {
  cd $pkgname
  ./static_linux.sh
}

package() {
  cd $pkgname
  install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim: ts=2 sw=2 et: