aboutsummaryrefslogtreecommitdiffstats
path: root/community/log4cplus/APKBUILD
blob: c1a26008c590618f17670be8b048de5b51daa572 (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
41
42
43
44
45
46
47
48
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=log4cplus
pkgver=2.0.5
pkgrel=0
pkgdesc="Logging Framework for C++"
url="https://sourceforge.net/p/log4cplus/wiki/Home/"
arch="all"
license="Apache-2.0"
checkdepends="findutils"
subpackages="$pkgname-static $pkgname-dev $pkgname-unicode"
source="https://downloads.sourceforge.net/log4cplus/log4cplus-$pkgver.tar.xz"

build() {
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--disable-implicit-initialization \
		--enable-lto \
		--enable-static \
		--with-working-c-locale
	make
}

check() {
	make check || {
		find -name testsuite.log -type f -ls \
			-printf '%P {{{\n' \
			-exec cat -v -n '{}' ';' \
			-printf '}}} %P\n'
		return 1
	}
}

package() {
	make DESTDIR="$pkgdir" install
}

unicode() {
	pkgdesc="$pkgdesc (Unicode)"

	amove ./usr/lib/liblog4cplusU*
}

sha512sums="916bd148d4f30d2dd14446faf2327ee4c8ad48c62666d5e3970a1f4b29a234f6af770164ee5db5a5a8d5a23d3fab6361abcbb49ba31b23513823dd64cb70ba46  log4cplus-2.0.5.tar.xz"