# HG changeset patch # User Hans-G?nter Theisgen # Date 1646750334 -3600 # Node ID 2220a68cc3887ad5b46a2f31e06576b08a9b8f30 # Parent 20808bfd01be4b759f9dada1787fba9633cb9bd9 updated gtest (1.10.0 -> 1.11.0) diff -r 20808bfd01be -r 2220a68cc388 gtest/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gtest/description.txt Tue Mar 08 15:38:54 2022 +0100 @@ -0,0 +1,7 @@ +Googletest helps you write better C++ tests. + +Googletest is a testing framework developed by the Testing Technology +team with Google's specific requirements and constraints in mind. +Whether you work on Linux, Windows, or a Mac, if you write C++ code, +googletest can help you. +And it supports any kind of tests, not just unit tests. diff -r 20808bfd01be -r 2220a68cc388 gtest/receipt --- a/gtest/receipt Tue Mar 08 09:50:11 2022 +0100 +++ b/gtest/receipt Tue Mar 08 15:38:54 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="gtest" -VERSION="1.10.0" +VERSION="1.11.0" CATEGORY="development" SHORT_DESC="Google's framework for writing C++ tests." MAINTAINER="pascal.bellard@slitaz.org" @@ -26,9 +26,10 @@ export CC=gcc-83 export CXX=g++-83 - mkdir build && - cd build && - cmake -DCMAKE_INSTALL_PREFIX=/usr .. + mkdir _build && + cd _build && + cmake .. \ + -D CMAKE_INSTALL_PREFIX=/usr && make } @@ -38,5 +39,5 @@ mkdir -p $fs/usr/lib cp -a $src/googletest/include $fs/usr - cp -a $src/build/lib/*a $fs/usr/lib + cp -a $src/_build/lib/*a $fs/usr/lib }