diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2020-03-02 16:07:02 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-03 07:52:28 -0300 |
commit | b5f8ece2e2ec2b90bd37ce1972932a2592cef85d (patch) | |
tree | ba48db1aed717196c3f9a0632703d67a86e38cdf /community/jsoncpp/APKBUILD | |
parent | e0c690d5e38a10e8c98c9584cf6b2e207ddba5a9 (diff) | |
download | aports-b5f8ece2e2ec2b90bd37ce1972932a2592cef85d.tar.bz2 aports-b5f8ece2e2ec2b90bd37ce1972932a2592cef85d.tar.xz |
community/*: add --buildtype=plain to meson packages which don't specify a buildtype
Diffstat (limited to 'community/jsoncpp/APKBUILD')
-rw-r--r-- | community/jsoncpp/APKBUILD | 9 |
1 files changed, 7 insertions, 2 deletions
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 <ncopa@alpinelinux.org> 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 } |