wok-current rev 24631
updated gtest (1.10.0 -> 1.11.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 08 15:38:54 2022 +0100 (2022-03-08) |
parents | 20808bfd01be |
children | 83ab1229b305 |
files | gtest/description.txt gtest/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gtest/description.txt Tue Mar 08 15:38:54 2022 +0100 1.3 @@ -0,0 +1,7 @@ 1.4 +Googletest helps you write better C++ tests. 1.5 + 1.6 +Googletest is a testing framework developed by the Testing Technology 1.7 +team with Google's specific requirements and constraints in mind. 1.8 +Whether you work on Linux, Windows, or a Mac, if you write C++ code, 1.9 +googletest can help you. 1.10 +And it supports any kind of tests, not just unit tests.
2.1 --- a/gtest/receipt Tue Mar 08 09:50:11 2022 +0100 2.2 +++ b/gtest/receipt Tue Mar 08 15:38:54 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="gtest" 2.7 -VERSION="1.10.0" 2.8 +VERSION="1.11.0" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Google's framework for writing C++ tests." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 @@ -26,9 +26,10 @@ 2.13 export CC=gcc-83 2.14 export CXX=g++-83 2.15 2.16 - mkdir build && 2.17 - cd build && 2.18 - cmake -DCMAKE_INSTALL_PREFIX=/usr .. 2.19 + mkdir _build && 2.20 + cd _build && 2.21 + cmake .. \ 2.22 + -D CMAKE_INSTALL_PREFIX=/usr && 2.23 make 2.24 } 2.25 2.26 @@ -38,5 +39,5 @@ 2.27 mkdir -p $fs/usr/lib 2.28 2.29 cp -a $src/googletest/include $fs/usr 2.30 - cp -a $src/build/lib/*a $fs/usr/lib 2.31 + cp -a $src/_build/lib/*a $fs/usr/lib 2.32 }