gtest: update to 1.8.1.

This commit is contained in:
maxice8 2018-08-31 23:20:52 -03:00
parent e03873b5b5
commit d0d8ed2bde
No known key found for this signature in database
GPG key ID: 543B9D4F4299F06B

View file

@ -1,22 +1,28 @@
# Template build file for 'gtest' # Template file for 'gtest'
pkgname=gtest pkgname=gtest
version=1.8.0 version=1.8.1
revision=4 revision=1
wrksrc="googletest-release-${version}" wrksrc="googletest-release-${version}"
build_style=cmake build_style=cmake
configure_args="-DBUILD_SHARED_LIBS=ON -DCMAKE_SKIP_RPATH=ON"
hostmakedepends="unzip"
short_desc="Google's framework for writing C++ tests" short_desc="Google's framework for writing C++ tests"
maintainer="Enno Boland <gottox@voidlinux.eu>" maintainer="Enno Boland <gottox@voidlinux.eu>"
license="MIT" license="BSD-3-Clause"
hostmakedepends="unzip"
homepage="https://github.com/google/googletest" homepage="https://github.com/google/googletest"
distfiles="https://github.com/google/googletest/archive/release-${version}.tar.gz>${pkgname}-${version}.tar.gz" distfiles="https://github.com/google/googletest/archive/release-${version}.tar.gz>${pkgname}-${version}.tar.gz"
checksum=58a6f4277ca2bc8565222b3bbd58a177609e9c488e8a72649359ba51450db7d8 checksum=9bf1fe5182a604b4135edc1a425ae356c9ad15e9b23f9f12a02e80184c3a249c
configure_args="-DBUILD_SHARED_LIBS=ON -DCMAKE_SKIP_RPATH=ON"
post_install() {
vlicense LICENSE
}
gtest-devel_package() { gtest-devel_package() {
depends="gtest>=${version}_${revision}" depends="gtest>=${version}_${revision}"
short_desc+=" - development files" short_desc+=" - development files"
pkg_install() { pkg_install() {
vmove usr/include vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/cmake
} }
} }