summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a1bcce103cccf8512ea9e966d1b0c00c29ca4236 (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
26
# Maintainer: dadav <33197631+dadav@users.noreply.github.com>

pkgname=tmpltr
pkgver=0.8
pkgrel=1
pkgdesc="This tool creates templates from logfiles and shows anomalies"
arch=('x86_64')
url="https://github.com/rondilley/tmpltr"
license=('GPL')
makedepends=('automake' 'autoconf')
provides=('tmpltr')
source=("https://github.com/rondilley/tmpltr/archive/v${pkgver}.zip")
sha256sums=('3aa84ba0e95321fcf78c6f668a1a91475ec8338b303bbcf49fe3626991a063cd')

build() {
  cd "${pkgname}-${pkgver}"
  ./bootstrap
  autoreconf -i
  ./configure --prefix=/usr
  make
}

package() {
  cd "${pkgname}-${pkgver}"
  make install DESTDIR="${pkgdir}"
}