summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-10-23 03:08:23 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2016-12-01 20:51:36 (GMT)
commit54216fde55c7e20d4b1fed056a97a812ba059373 (patch)
treeb7d87c5f10ee880694186a8229eeef13c7cdf1e1
parent08d8094f3a6791f64f1503d96e4456e06ba646ef (diff)
downloadmxe-54216fde55c7e20d4b1fed056a97a812ba059373.zip
mxe-54216fde55c7e20d4b1fed056a97a812ba059373.tar.gz
mxe-54216fde55c7e20d4b1fed056a97a812ba059373.tar.bz2
add package googlemock
It is needed by protobuf 3.1.0
-rw-r--r--docs/index.html4
-rw-r--r--src/googlemock.mk14
2 files changed, 18 insertions, 0 deletions
diff --git a/docs/index.html b/docs/index.html
index f46f93e..34a44d7 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -1455,6 +1455,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="website"><a href="https://www.gnu.org/software/gnutls/">GnuTLS</a></td>
</tr>
<tr>
+ <td class="package">googlemock</td>
+ <td class="website"><a href="https://github.com/google/googlemock">Google Mock</a></td>
+ </tr>
+ <tr>
<td class="package">googletest</td>
<td class="website"><a href="https://github.com/google/googletest">Google Test</a></td>
</tr>
diff --git a/src/googlemock.mk b/src/googlemock.mk
new file mode 100644
index 0000000..9aaabdc
--- /dev/null
+++ b/src/googlemock.mk
@@ -0,0 +1,14 @@
+# This file is part of MXE. See LICENSE.md for licensing information.
+
+PKG := googlemock
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 1.7.0
+$(PKG)_CHECKSUM := 3f20b6acb37e5a98e8c4518165711e3e35d47deb6cdb5a4dd4566563b5efd232
+$(PKG)_SUBDIR := googlemock-release-$($(PKG)_VERSION)
+$(PKG)_FILE := googlemock-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL := https://github.com/google/googlemock/archive/release-$($(PKG)_VERSION).tar.gz
+$(PKG)_DEPS :=
+
+define $(PKG)_UPDATE
+ $(call MXE_GET_GITHUB_TAGS, google/googlemock, release-)
+endef