# Template file for 'gtest'
pkgname=gtest
version=1.16.0
revision=1
build_style=cmake
make_cmd=make # using make to avoid a cycle: ninja -> gtest -> ninja
configure_args="-DBUILD_SHARED_LIBS=ON -DCMAKE_SKIP_RPATH=ON"
hostmakedepends="unzip"
short_desc="Google's framework for writing C++ tests"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="BSD-3-Clause"
homepage="https://github.com/google/googletest"
distfiles="https://github.com/google/googletest/archive/v${version}.tar.gz"
checksum=78c676fc63881529bf97bf9d45948d905a66833fbfa5318ea2cd7478cb98f399

export CMAKE_GENERATOR="Unix Makefiles"

post_install() {
	vlicense LICENSE
}

gtest-devel_package() {
	depends="gtest>=${version}_${revision}"
	short_desc+=" - development files"
	pkg_install() {
		vmove "usr/lib/*.so"
		vmove usr/include
		vmove usr/lib/pkgconfig
		vmove usr/lib/cmake
	}
}
