summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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