mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
57 lines
1.3 KiB
Plaintext
57 lines
1.3 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=json-c
|
|
pkgver=0.13.1
|
|
pkgrel=0
|
|
pkgdesc="A JSON implementation in C"
|
|
url="https://github.com/json-c/json-c/wiki"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev autoconf automake libtool"
|
|
install=""
|
|
subpackages="$pkgname-static $pkgname-dev"
|
|
source="https://s3.amazonaws.com/${pkgname}_releases/releases/$pkgname-${pkgver}.tar.gz
|
|
"
|
|
|
|
builddir="$srcdir"/json-c-$pkgver
|
|
prepare() {
|
|
cd "$builddir"
|
|
default_prepare
|
|
autoreconf -f -v -i
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
export CFLAGS="${CFLAGS} -Wno-error=unused-but-set-variable"
|
|
./configure --prefix=/usr \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--enable-shared \
|
|
ac_cv_func_malloc_0_nonnull=yes \
|
|
ac_cv_func_realloc_0_nonnull=yes
|
|
make -j1
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make USE_VALGRIND=0 check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
static() {
|
|
pkgdesc="Static json-c library"
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/*.a "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
sha512sums="e984db2a42b9c95b52c798b2e8dd1b79951a8dcba27370af30c43b9549fbb00008dbcf052a535c528209aaee38e6d1f760168b706905ae72f3e704ed20f8a1a1 json-c-0.13.1.tar.gz"
|