Revert "virtual package googletest is not required anymore"

This reverts commit ad11e753dd.

New protobuf release (3.1.0) does not provide official
tarballs with prepared configure and googletest files.
This commit is contained in:
Boris Nagaev 2016-10-23 05:44:33 +03:00
parent b67f646883
commit c3df5c53be
2 changed files with 19 additions and 0 deletions

View File

@ -1454,6 +1454,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="package">gnutls</td>
<td class="website"><a href="https://www.gnu.org/software/gnutls/">GnuTLS</a></td>
</tr>
<tr>
<td class="package">googletest</td>
<td class="website"><a href="https://github.com/google/googletest">Google Test</a></td>
</tr>
<tr>
<td class="package">graphicsmagick</td>
<td class="website"><a href="http://www.graphicsmagick.org/">GraphicsMagick</a></td>

15
src/googletest.mk Normal file
View File

@ -0,0 +1,15 @@
# This file is part of MXE.
# See index.html for further information.
PKG := googletest
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.7.0
$(PKG)_CHECKSUM := f73a6546fdf9fce9ff93a5015e0333a8af3062a152a9ad6bcb772c96687016cc
$(PKG)_SUBDIR := $(PKG)-release-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://github.com/google/$(PKG)/archive/release-$($(PKG)_VERSION).tar.gz
$(PKG)_DEPS :=
define $(PKG)_UPDATE
$(call MXE_GET_GITHUB_TAGS, google/googletest, release-)
endef