mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
package/gtest: bump to version 1.10.0
Drop custom gtest.pc and gmock.pc, already provided. Add a post-install-staging hook to install the gmock-config script. Signed-off-by: Carlos Santos <unixmania@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
b33e61c57d
commit
c9efaf153f
@ -1,11 +0,0 @@
|
|||||||
prefix=/usr
|
|
||||||
exec_prefix=${prefix}
|
|
||||||
libdir=${prefix}/lib/
|
|
||||||
includedir=${prefix}/include
|
|
||||||
|
|
||||||
Name: gmock
|
|
||||||
Description: Google C++ Mocking Framework
|
|
||||||
Version: 1.8.0
|
|
||||||
Libs: -L${libdir} -lgmock
|
|
||||||
Libs.private: -lpthread
|
|
||||||
Cflags: -I${includedir}
|
|
@ -1,3 +1,3 @@
|
|||||||
# Locally computed:
|
# Locally computed:
|
||||||
sha256 58a6f4277ca2bc8565222b3bbd58a177609e9c488e8a72649359ba51450db7d8 gtest-1.8.0.tar.gz
|
sha256 9dc9157a9a1551ec7a7e43daea9a694a0bb5fb8bec81235d8a1e6ef64c716dcb gtest-1.10.0.tar.gz
|
||||||
sha256 9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138 googletest/LICENSE
|
sha256 9702de7e4117a8e2b20dafab11ffda58c198aede066406496bef670d40a22138 googletest/LICENSE
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
GTEST_VERSION = 1.8.0
|
GTEST_VERSION = 1.10.0
|
||||||
GTEST_SITE = $(call github,google,googletest,release-$(GTEST_VERSION))
|
GTEST_SITE = $(call github,google,googletest,release-$(GTEST_VERSION))
|
||||||
GTEST_INSTALL_STAGING = YES
|
GTEST_INSTALL_STAGING = YES
|
||||||
GTEST_INSTALL_TARGET = NO
|
GTEST_INSTALL_TARGET = NO
|
||||||
@ -46,17 +46,9 @@ endif
|
|||||||
|
|
||||||
GTEST_CONF_OPTS += -DBUILD_GTEST=ON
|
GTEST_CONF_OPTS += -DBUILD_GTEST=ON
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GTEST_GMOCK),y)
|
# Generate the gtest-config script manually, since the CMake build system is
|
||||||
GTEST_CONF_OPTS += -DBUILD_GMOCK=ON
|
# not doing it.
|
||||||
else
|
define GTEST_INSTALL_GTEST_CONFIG
|
||||||
GTEST_CONF_OPTS += -DBUILD_GMOCK=OFF
|
|
||||||
endif
|
|
||||||
|
|
||||||
define GTEST_INSTALL_MISSING_FILES
|
|
||||||
$(INSTALL) -D -m 0644 package/gtest/gtest.pc \
|
|
||||||
$(STAGING_DIR)/usr/lib/pkgconfig/gtest.pc
|
|
||||||
# Generate the gtest-config script manually, since the CMake
|
|
||||||
# build system is not doing it.
|
|
||||||
sed 's%@PACKAGE_TARNAME@%gtest%;\
|
sed 's%@PACKAGE_TARNAME@%gtest%;\
|
||||||
s%@PACKAGE_VERSION@%$(GTEST_VERSION)%;\
|
s%@PACKAGE_VERSION@%$(GTEST_VERSION)%;\
|
||||||
s%@prefix@%$(STAGING_DIR)/usr%;\
|
s%@prefix@%$(STAGING_DIR)/usr%;\
|
||||||
@ -70,16 +62,30 @@ define GTEST_INSTALL_MISSING_FILES
|
|||||||
> $(STAGING_DIR)/usr/bin/gtest-config
|
> $(STAGING_DIR)/usr/bin/gtest-config
|
||||||
chmod +x $(STAGING_DIR)/usr/bin/gtest-config
|
chmod +x $(STAGING_DIR)/usr/bin/gtest-config
|
||||||
endef
|
endef
|
||||||
|
GTEST_POST_INSTALL_STAGING_HOOKS = GTEST_INSTALL_GTEST_CONFIG
|
||||||
GTEST_POST_INSTALL_STAGING_HOOKS = GTEST_INSTALL_MISSING_FILES
|
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GTEST_GMOCK),y)
|
ifeq ($(BR2_PACKAGE_GTEST_GMOCK),y)
|
||||||
define GTEST_GMOCK_INSTALL_MISSING_FILE
|
GTEST_CONF_OPTS += -DBUILD_GMOCK=ON
|
||||||
$(INSTALL) -D -m 0644 package/gtest/gmock.pc \
|
|
||||||
$(STAGING_DIR)/usr/lib/pkgconfig/gmock.pc
|
|
||||||
endef
|
|
||||||
|
|
||||||
GTEST_POST_INSTALL_STAGING_HOOKS += GTEST_GMOCK_INSTALL_MISSING_FILE
|
# Generate the gmock-config script manually, since the CMake build system is
|
||||||
|
# not doing it.
|
||||||
|
define GTEST_INSTALL_GMOCK_CONFIG
|
||||||
|
sed 's%@PACKAGE_TARNAME@%gmock%;\
|
||||||
|
s%@PACKAGE_VERSION@%$(GTEST_VERSION)%;\
|
||||||
|
s%@prefix@%$(STAGING_DIR)/usr%;\
|
||||||
|
s%@exec_prefix@%$(STAGING_DIR)/usr%;\
|
||||||
|
s%@libdir@%$(STAGING_DIR)/usr/lib%;\
|
||||||
|
s%@includedir@%$(STAGING_DIR)/usr/include%;\
|
||||||
|
s%@bindir@%$(STAGING_DIR)/usr/bin%;\
|
||||||
|
s%@PTHREAD_CFLAGS@%%;\
|
||||||
|
s%@PTHREAD_LIBS@%-lpthread%;' \
|
||||||
|
$(@D)/googlemock/scripts/gmock-config.in \
|
||||||
|
> $(STAGING_DIR)/usr/bin/gmock-config
|
||||||
|
chmod +x $(STAGING_DIR)/usr/bin/gmock-config
|
||||||
|
endef
|
||||||
|
GTEST_POST_INSTALL_STAGING_HOOKS += GTEST_INSTALL_GMOCK_CONFIG
|
||||||
|
else
|
||||||
|
GTEST_CONF_OPTS += -DBUILD_GMOCK=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define HOST_GTEST_INSTALL_CMDS
|
define HOST_GTEST_INSTALL_CMDS
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
prefix=/usr
|
|
||||||
exec_prefix=${prefix}
|
|
||||||
libdir=${prefix}/lib/
|
|
||||||
includedir=${prefix}/include
|
|
||||||
|
|
||||||
Name: gtest
|
|
||||||
Description: Google C++ Testing Framework
|
|
||||||
Version: 1.8.0
|
|
||||||
Libs: -L${libdir} -lgtest
|
|
||||||
Libs.private: -lpthread
|
|
||||||
Cflags: -I${includedir}
|
|
Loading…
x
Reference in New Issue
Block a user