wok rev 22975
updated jsoncpp (1.8.4 -> 1.9.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 29 15:32:23 2020 +0100 (2020-02-29) |
parents | f9a649f31165 |
children | a9f09a1e9b06 |
files | jsoncpp/receipt |
line diff
1.1 --- a/jsoncpp/receipt Sat Feb 29 15:17:59 2020 +0100 1.2 +++ b/jsoncpp/receipt Sat Feb 29 15:32:23 2020 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="jsoncpp" 1.7 -VERSION="1.8.4" 1.8 +VERSION="1.9.2" 1.9 CATEGORY="misc" 1.10 SHORT_DESC="A C++ library for interacting with JSON." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -11,21 +11,23 @@ 1.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 1.15 1.16 -BUILD_DEPENDS="cmake pkg-config" 1.17 +DEPENDS="gcc83-lib-base" 1.18 +BUILD_DEPENDS="cmake gcc83 pkg-config py3k" 1.19 1.20 # Rules to configure and make the package. 1.21 compile_rules() 1.22 { 1.23 - mkdir build && cd build 1.24 + mkdir build && 1.25 + cd build && 1.26 cmake .. \ 1.27 -DCMAKE_CXX_FLAGS="-ffloat-store" \ 1.28 -DCMAKE_INSTALL_PREFIX=/usr && 1.29 - make -j 1 && 1.30 + make && 1.31 make DESTDIR=$DESTDIR install 1.32 } 1.33 1.34 # Rules to gen a SliTaz package suitable for Tazpkg. 1.35 genpkg_rules() 1.36 { 1.37 - cp -a $install/* $fs/ 1.38 + cp -a $install/* $fs 1.39 }