summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-08-16 00:40:05 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-08-16 01:07:22 (GMT)
commit626b5ac24c725204c5d2a795e42a8e1408e231b5 (patch)
tree2e647100c62630997e3d4b71a304c38a15f118de
parentb16d891ed3ea987589e1af745be69b178db3122e (diff)
downloadmxe-626b5ac24c725204c5d2a795e42a8e1408e231b5.zip
mxe-626b5ac24c725204c5d2a795e42a8e1408e231b5.tar.gz
mxe-626b5ac24c725204c5d2a795e42a8e1408e231b5.tar.bz2
Add package widl
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rw-r--r--index.html4
-rw-r--r--src/widl.mk27
2 files changed, 31 insertions, 0 deletions
diff --git a/index.html b/index.html
index d0c25aa..6b22973 100644
--- a/index.html
+++ b/index.html
@@ -2410,6 +2410,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="website"><a href="https://www.gnu.org/software/wget/">wget</a></td>
</tr>
<tr>
+ <td class="package">widl</td>
+ <td class="website"><a href="https://www.winehq.org/docs/widl/">Wine IDL Compiler</a></td>
+ </tr>
+ <tr>
<td class="package">winpcap</td>
<td class="website"><a href="http://www.winpcap.org/">WinPcap</a></td>
</tr>
diff --git a/src/widl.mk b/src/widl.mk
new file mode 100644
index 0000000..602cf29
--- /dev/null
+++ b/src/widl.mk
@@ -0,0 +1,27 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+# WIDL is called "Wine IDL Compiler"; but we use mingw-w64's copy of it to
+# avoid downloading Wine's entire tree.
+
+PKG := widl
+$(PKG)_IGNORE = $(mingw-w64_IGNORE)
+$(PKG)_VERSION = $(mingw-w64_VERSION)
+$(PKG)_CHECKSUM = $(mingw-w64_CHECKSUM)
+$(PKG)_SUBDIR = $(mingw-w64_SUBDIR)
+$(PKG)_FILE = $(mingw-w64_FILE)
+$(PKG)_URL = $(mingw-w64_URL)
+$(PKG)_DEPS :=
+
+define $(PKG)_UPDATE
+ echo $(mingw-w64_VERSION)
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)/mingw-w64-tools/widl' && ./configure \
+ --host='$(BUILD)' \
+ --build='$(BUILD)' \
+ --prefix='$(PREFIX)' \
+ --target='$(TARGET)'
+ $(MAKE) -C '$(1)/mingw-w64-tools/widl' -j '$(JOBS)' install
+endef