From b5f8ece2e2ec2b90bd37ce1972932a2592cef85d Mon Sep 17 00:00:00 2001 From: Rasmus Thomsen Date: Mon, 2 Mar 2020 16:07:02 +0100 Subject: community/*: add --buildtype=plain to meson packages which don't specify a buildtype --- community/jsoncpp/APKBUILD | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'community/jsoncpp') diff --git a/community/jsoncpp/APKBUILD b/community/jsoncpp/APKBUILD index ebe82160ea..c8b9b0727e 100644 --- a/community/jsoncpp/APKBUILD +++ b/community/jsoncpp/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=jsoncpp pkgver=1.9.2 -pkgrel=0 +pkgrel=1 pkgdesc="JSON C++ library" # Disable tests to unblock builder # ../src/test_lib_json/main.cpp(3370): expected == result @@ -21,7 +21,12 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/open-source-parsers/jsoncpp/ build() { # we cannot use cmake since jsoncpp is a dependency for cmake which # means we would get circular buildtime deps - meson --prefix /usr --libdir /usr/lib --buildtype release --default-library both . build + meson \ + --prefix=/usr \ + --libdir=/usr/lib \ + --buildtype=plain \ + --default-library=both \ + build ninja -C build } -- cgit v1.2.3