summaryrefslogtreecommitdiffstats
path: root/src/libxml++.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/libxml++.mk')
-rw-r--r--src/libxml++.mk27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/libxml++.mk b/src/libxml++.mk
new file mode 100644
index 0000000..c903da4
--- /dev/null
+++ b/src/libxml++.mk
@@ -0,0 +1,27 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := libxml++
+$(PKG)_IGNORE :=
+$(PKG)_CHECKSUM := 112d6e26a8ce1426aa8931f26ea593484b2081f0
+$(PKG)_SUBDIR := libxml++-$($(PKG)_VERSION)
+$(PKG)_FILE := libxml++-$($(PKG)_VERSION).tar.xz
+$(PKG)_URL := http://ftp.gnome.org/pub/GNOME/sources/libxml++/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc libxml2 glibmm
+
+define $(PKG)_UPDATE
+ wget -q -O- 'http://git.gnome.org/browse/libxml++/refs/tags' | \
+ grep '<a href=' | \
+ $(SED) -n "s,.*<a href='[^']*/tag/?id=\\([0-9][^']*\\)'.*,\\1,p" | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)' && CXX="$(TARGET)-g++ -mthreads" ./configure \
+ --host='$(TARGET)' \
+ --disable-shared \
+ --prefix='$(PREFIX)/$(TARGET)' \
+ MAKE=$(MAKE)
+ $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+ $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+endef