aboutsummaryrefslogtreecommitdiffstats
path: root/testing/json-c0.12/APKBUILD
blob: ced8d7bace7e14994a887d4ba7c6b7eb1f3939c7 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=json-c0.12
pkgver=0.12.1
pkgrel=2
pkgdesc="A JSON implementation in C"
url="https://github.com/json-c/json-c/wiki"
arch="all"
license="MIT"
makedepends=" autoconf automake libtool"
subpackages="$pkgname-dev"
replaces="json-c"
source="https://s3.amazonaws.com/json-c_releases/releases/json-c-$pkgver.tar.gz
	"

builddir="$srcdir"/json-c-$pkgver
prepare() {
	default_prepare
	autoreconf -f -v -i
}

build() {
	export CFLAGS="$CFLAGS -Wno-error=unused-but-set-variable -Wno-error=implicit-fallthrough"
	./configure --prefix=/usr \
		--build=$CBUILD \
		--host=$CHOST \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var \
		--enable-shared \
		--disable-static \
		ac_cv_func_malloc_0_nonnull=yes \
		ac_cv_func_realloc_0_nonnull=yes
	make -j1
}

check() {
	make USE_VALGRIND=0 check
}

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

sha512sums="038676a0ce815e5174161fbd4339524feadc294d517f732fb408ad6aa7c4906423451c13386107569d9f24746a1a101564ca511e92e8276c5bf5b8c022ca42ed  json-c-0.12.1.tar.gz"