mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 12:45:20 +03:00
this is much less spammy in log output, as only actual errors are printed instead of everything
38 lines
1 KiB
Text
38 lines
1 KiB
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=jsoncpp
|
|
pkgver=1.9.5
|
|
pkgrel=0
|
|
pkgdesc="JSON C++ library"
|
|
url="https://github.com/open-source-parsers/jsoncpp"
|
|
arch="all"
|
|
license="Public-Domain"
|
|
makedepends="meson"
|
|
subpackages="$pkgname-static $pkgname-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/open-source-parsers/jsoncpp/archive/$pkgver.tar.gz"
|
|
|
|
build() {
|
|
# we cannot use cmake since jsoncpp is a dependency for cmake which
|
|
# means we would get circular buildtime deps
|
|
abuild-meson \
|
|
--default-library=both \
|
|
build
|
|
meson compile ${JOBS:+-j ${JOBS}} -C build
|
|
}
|
|
|
|
check() {
|
|
meson test --no-rebuild --print-errorlogs -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C build
|
|
}
|
|
|
|
static() {
|
|
pkgdesc="JsonCpp static library"
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/*.a "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
sha512sums="
|
|
1d06e044759b1e1a4cc4960189dd7e001a0a4389d7239a6d59295af995a553518e4e0337b4b4b817e70da5d9731a4c98655af90791b6287870b5ff8d73ad8873 jsoncpp-1.9.5.tar.gz
|
|
"
|