summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 10e5cc7d557f14e89135984c7d1bfeefb512bb6d (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: Pierre-Yves Ritschard <pyr@spootnik.org>
# Maintainer: László Várady <laszlo.varady93@gmail.com>

pkgname=riemann-c-client
pkgver=1.10.4
pkgrel=1
pkgdesc='Riemann C driver library and CLI client'
url="https://github.com/algernon/riemann-c-client"
license=('LGPL3')
source=(git+https://github.com/algernon/riemann-c-client#tag=riemann-c-client-$pkgver)
arch=(i686 x86_64 armv7h)
depends=(zlib protobuf-c gnutls)
makedepends=(git autoconf automake)
sha256sums=('SKIP')

build() {
  cd riemann-c-client
  autoreconf -i
  ./configure --prefix=/usr --enable-tls
  make
}

package() {
  cd riemann-c-client
  make install DESTDIR="$pkgdir"
}