changeset 3134:d0564e676d38

Add intltool
author Michael Goffioul <michael.goffioul@gmail.com>
date Fri, 12 Jul 2013 21:56:26 -0400
parents 93dc7f614289
children 8147e6f8659a
files index.html src/intltool.mk
diffstat 2 files changed, 29 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/index.html	Fri Jul 12 20:18:43 2013 -0400
+++ b/index.html	Fri Jul 12 21:56:26 2013 -0400
@@ -1374,6 +1374,11 @@
         <td id="imagemagick-website"><a href="http://www.imagemagick.org/">ImageMagick</a></td>
     </tr>
     <tr>
+        <td id="intltool-package">intltool</td>
+        <td id="intltool-version">0.50.2</td>
+        <td id="intltool-website"><a href="https://launchpad.net/intltool/+download">intltool</a></td>
+    </tr>
+    <tr>
         <td id="itsol-package">ITSOL</td>
         <td id="itsol-version">2</td>
         <td id="itsol-website"><a href="http://www-users.cs.umn.edu/~saad/software/ITSOL/">ITSOL</a></td>
@@ -2219,7 +2224,7 @@
         <td id="uuid-website"><a href="http://www.mingw.org/">MingWG Windows API</a></td>
     </tr>
     <tr>
-        <td id="vala-package">vigra</td>
+        <td id="vala-package">vala</td>
         <td id="vala-version">0.20.1</td>
         <td id="vala-website"><a href="https://wiki.gnome.org/Vala/">Vala</a></td>
     </tr>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/intltool.mk	Fri Jul 12 21:56:26 2013 -0400
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := intltool
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := 7fddbd8e1bf94adbf1bc947cbf3b8ddc2453f8ad
+$(PKG)_SUBDIR   := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE     := $(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := http://launchpad.net/$(PKG)/trunk/$($(PKG)_VERSION)/+download/$(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_DEPS     :=
+
+define $(PKG)_UPDATE
+    echo 'Warning: Updates are temporarily disabled for package intltool.' >&2;
+    echo $(intltool_VERSION)
+endef
+
+define $(PKG)_BUILD
+    cd '$(1)' && '$(1)/configure' \
+        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
+        --prefix='$(HOST_PREFIX)'
+    $(MAKE) -C '$(1)' -j '$(JOBS)'
+    $(MAKE) -C '$(1)' -j 1 install
+endef