mxe/src/gtk.mk

50 lines
1.6 KiB
Makefile
Raw Normal View History

2010-01-16 22:02:02 +00:00
# This file is part of mingw-cross-env.
# See doc/index.html for further information.
# GTK+
PKG := gtk
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.22.1
$(PKG)_CHECKSUM := c88d8be4aebd6e59d6ca44d57f6acd18e2be1c08
$(PKG)_SUBDIR := gtk+-$($(PKG)_VERSION)
$(PKG)_FILE := gtk+-$($(PKG)_VERSION).tar.bz2
$(PKG)_WEBSITE := http://www.gtk.org/
$(PKG)_URL := http://ftp.gnome.org/pub/gnome/sources/gtk+/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
$(PKG)_DEPS := gcc gettext libpng jpeg tiff jasper glib atk pango cairo gdk-pixbuf
define $(PKG)_UPDATE
wget -q -O- 'http://git.gnome.org/browse/gtk+/refs/tags' | \
grep '<a href=' | \
$(SED) -n 's,.*<a[^>]*>\([0-9]*\.[0-9]*[02468]\.[^<]*\)<.*,\1,p' | \
2010-05-13 16:32:58 +01:00
grep -v '^2\.9' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--enable-explicit-deps \
--disable-gdiplus \
--disable-glibtest \
--disable-modules \
--disable-cups \
--disable-test-print-backend \
--disable-gtk-doc \
--disable-man \
--with-libpng \
--with-libjpeg \
--with-libtiff \
--with-libjasper \
--with-included-loaders \
--with-included-immodules \
--without-x
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
2010-02-15 23:48:52 +00:00
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
2010-02-16 02:49:06 +00:00
'$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-gtk.exe' \
`'$(TARGET)-pkg-config' gtk+-2.0 --cflags --libs`
endef