summaryrefslogtreecommitdiffstats
path: root/src/intltool.mk
diff options
context:
space:
mode:
authorSergey <non_2001@mail.ru>2014-08-06 02:57:56 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-08-06 02:58:35 (GMT)
commit78d6cc3592f5fa90fc15f4a74f6f6c56368eec3b (patch)
treed35e66285b42a63fbe3c7220079e0023db62290e /src/intltool.mk
parent3caf14807e3c702dcae2ff25687426f3c22d9fda (diff)
downloadmxe-78d6cc3592f5fa90fc15f4a74f6f6c56368eec3b.zip
mxe-78d6cc3592f5fa90fc15f4a74f6f6c56368eec3b.tar.gz
mxe-78d6cc3592f5fa90fc15f4a74f6f6c56368eec3b.tar.bz2
Add package intltool
See #445. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'src/intltool.mk')
-rw-r--r--src/intltool.mk25
1 files changed, 25 insertions, 0 deletions
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