summaryrefslogtreecommitdiffstats
path: root/src/gdk-pixbuf.mk
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2010-09-24 14:33:16 (GMT)
committerMark Brand <mabrand@mabrand.nl>2010-09-24 14:33:16 (GMT)
commitb9ae4389fc2f3b0fb9e9533ccfe07fd08c04c2fd (patch)
tree9a4c8bb98dae222d2d9a85208968c700c0dd4e80 /src/gdk-pixbuf.mk
parent1fdb871f505d806471883a76bc52a35ee99f3a65 (diff)
downloadmxe-b9ae4389fc2f3b0fb9e9533ccfe07fd08c04c2fd.zip
mxe-b9ae4389fc2f3b0fb9e9533ccfe07fd08c04c2fd.tar.gz
mxe-b9ae4389fc2f3b0fb9e9533ccfe07fd08c04c2fd.tar.bz2
upgrade packages: glib gtk. new package: gdk-pixbuf
Diffstat (limited to 'src/gdk-pixbuf.mk')
-rw-r--r--src/gdk-pixbuf.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/gdk-pixbuf.mk b/src/gdk-pixbuf.mk
new file mode 100644
index 0000000..f53dab0
--- /dev/null
+++ b/src/gdk-pixbuf.mk
@@ -0,0 +1,31 @@
+# This file is part of mingw-cross-env.
+# See doc/index.html for further information.
+
+# GDK-pixbuf
+PKG := gdk-pixbuf
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 2.22.0
+$(PKG)_CHECKSUM := 80c25eaa08b22ebab24b98e88883ff615240d7cf
+$(PKG)_SUBDIR := gdk-pixbuf-$($(PKG)_VERSION)
+$(PKG)_FILE := gdk-pixbuf-$($(PKG)_VERSION).tar.bz2
+$(PKG)_WEBSITE := http://www.gdk-pixbuf.org/
+$(PKG)_URL := http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc glib libpng jpeg tiff jasper libiconv
+
+define $(PKG)_UPDATE
+ wget -q -O- 'http://git.gnome.org/browse/gdk-pixbuf+/refs/tags' | \
+ grep '<a href=' | \
+ $(SED) -n 's,.*<a[^>]*>\([0-9]*\.[0-9]*[02468]\.[^<]*\)<.*,\1,p' | \
+ grep -v '^2\.9' | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ # wine confuses the cross-compiling detection, so set it explicitly
+ $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure'
+ cd '$(1)' && ./configure \
+ --host='$(TARGET)' \
+ --disable-shared \
+ --prefix='$(PREFIX)/$(TARGET)'
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install
+endef