aboutsummaryrefslogtreecommitdiffstats
path: root/main/eventlog/APKBUILD
blob: e297ab518235c9b14cc83b43a70793465a84bad7 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>

pkgname=eventlog
pkgver=0.2.12
pkgrel=3
pkgdesc="API to format and send structured log messages"
arch="all"
url="http://www.balabit.com/support/community/products/"
license="BSD-3-Clause"
depends=
makedepends="automake autoconf libtool"
subpackages="$pkgname-dev"
source="https://my.balabit.com/downloads/eventlog/${pkgver%.*}/eventlog_$pkgver.tar.gz"

builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	autoreconf -vif
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--localstatedir=/var
	make
}

check() {
	cd "$builddir"
	make check
}

package() {
	cd "$builddir"
	make DESTDIR="${pkgdir}" install
	install -Dm644 COPYING \
		"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}

sha512sums="a681ab2961f5bf38e106a5b0b4492e74098808e2bf1a100f545736902649c705db124c0847796a47485faa8b0befe691a789d752f313c5b65ad50ed2763d2cce  eventlog_0.2.12.tar.gz"