diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-21 14:29:40 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-21 15:08:08 +0100 |
commit | 33685bc1eaf2ed71f6365e57e454875ba9002d5b (patch) | |
tree | ad8e847c0e735340c376a18b42a8c05267dacc93 /community/jsoncpp | |
parent | 68a4f80db6e0f738ad4992ddf2dbed826b5000ac (diff) | |
download | aports-33685bc1eaf2ed71f6365e57e454875ba9002d5b.tar.bz2 aports-33685bc1eaf2ed71f6365e57e454875ba9002d5b.tar.xz |
community/jsoncpp: upgrade to 1.9.2
Diffstat (limited to 'community/jsoncpp')
-rw-r--r-- | community/jsoncpp/APKBUILD | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/community/jsoncpp/APKBUILD b/community/jsoncpp/APKBUILD index 0cad243422..0c52e27aae 100644 --- a/community/jsoncpp/APKBUILD +++ b/community/jsoncpp/APKBUILD @@ -1,6 +1,6 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=jsoncpp -pkgver=1.9.1 +pkgver=1.9.2 pkgrel=0 pkgdesc="JSON C++ library" url="https://github.com/open-source-parsers/jsoncpp" @@ -11,7 +11,6 @@ subpackages="$pkgname-static $pkgname-dev" source="$pkgname-$pkgver.tar.gz::https://github.com/open-source-parsers/jsoncpp/archive/$pkgver.tar.gz" build() { - cd "$builddir" # 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 @@ -19,12 +18,10 @@ build() { } check() { - cd "$builddir" ninja -C build test } package() { - cd "$builddir" DESTDIR="$pkgdir" ninja -C build install } @@ -34,4 +31,4 @@ static() { mv "$pkgdir"/usr/lib/*.a "$subpkgdir"/usr/lib/ } -sha512sums="4a8352e1d32c0ba8a0aea4df1663279cb2256b334643c5b62be37dfb5951e06900ba38c010d1201511fcf7de09137d6a4b886edbb2b99160d2f62b5f4679f766 jsoncpp-1.9.1.tar.gz" +sha512sums="7c7188199d62ae040d458d507ba62f0370c53f39c580760ee5485cae5c08e5ced0c9aea7c14f54dfd041999a7291e4d0f67f8ccd8b1030622c85590774688640 jsoncpp-1.9.2.tar.gz" |