summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.html4
-rw-r--r--src/intltool.mk25
2 files changed, 29 insertions, 0 deletions
diff --git a/index.html b/index.html
index 857c054..adc5250 100644
--- a/index.html
+++ b/index.html
@@ -1486,6 +1486,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="website"><a href="http://www.imagemagick.org/">ImageMagick</a></td>
</tr>
<tr>
+ <td class="package">intltool</td>
+ <td class="website"><a href="http://freedesktop.org/wiki/Software/intltool/">Intltool</a></td>
+ </tr>
+ <tr>
<td class="package">isl</td>
<td class="website"><a href="http://isl.gforge.inria.fr/">Integer Set Library</a></td>
</tr>
diff --git a/src/intltool.mk b/src/intltool.mk
new file mode 100644
index 0000000..db051b7
--- /dev/null
+++ b/src/intltool.mk
@@ -0,0 +1,25 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := intltool
+$(PKG)_VERSION := 0.50.2
+$(PKG)_CHECKSUM := 7fddbd8e1bf94adbf1bc947cbf3b8ddc2453f8ad
+$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL := https://launchpad.net/intltool/trunk/$($(PKG)_VERSION)/+download/$($(PKG)_FILE)
+$(PKG)_DEPS :=
+
+define $(PKG)_UPDATE
+ $(WGET) -q -O- 'https://launchpad.net/intltool/+download' | \
+ $(SED) -n 's,.*https://launchpad.net/intltool/trunk/\([0-9][^"]*\)\/+download/intltool-\([0-9][^"]*\)\.tar.*,\1,p' | \
+ $(SORT) -V | \
+ tail -1
+endef
+
+define $(PKG)_BUILD_$(BUILD)
+ mkdir '$(1).build'
+ cd '$(1).build' && '$(1)/configure' \
+ --prefix='$(PREFIX)/$(TARGET)'
+ $(MAKE) -C '$(1).build' -j '$(JOBS)' man1_MANS=
+ $(MAKE) -C '$(1).build' -j 1 install man1_MANS=
+endef