changeset 1230:b62218b0ea3c

new package gtksourceviewmm
author Martin Gerhardy <martin.gerhardy@gmail.com>
date Thu, 30 Sep 2010 20:38:20 +1000
parents e8400e05db49
children e4a47d3a7ed6
files src/gtksourceviewmm.mk
diffstat 1 files changed, 30 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/gtksourceviewmm.mk	Thu Sep 30 20:38:20 2010 +1000
@@ -0,0 +1,30 @@
+# This file is part of mingw-cross-env.
+# See doc/index.html for further information.
+
+# GtkSourceViewmm
+PKG             := gtksourceviewmm
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 2.10.1
+$(PKG)_CHECKSUM := 7f6fb046427054d85c791a4b1fc0f742a3313c8a
+$(PKG)_SUBDIR   := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE     := $(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_WEBSITE  := http://projects.gnome.org/gtksourceview/
+$(PKG)_URL      := http://ftp.gnome.org/pub/gnome/sources/gtksourceviewmm/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
+$(PKG)_DEPS     := gcc gtksourceview
+
+define $(PKG)_UPDATE
+    wget -q -O- 'http://git.gnome.org/cgit/gtksourceviewmm/refs/tags' | \
+    grep '<a href=' | \
+    $(SED) -n "s,.*<a href='[^']*/tag/?id=gtksourceviewmm-\\([0-9][^']*\\)'.*,\\1,p" | \
+    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)' \
+        --prefix='$(PREFIX)/$(TARGET)' \
+        --disable-shared
+    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+endef