diff options
-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" |