summaryrefslogtreecommitdiffstats
path: root/src/dbus.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/dbus.mk')
-rw-r--r--src/dbus.mk14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/dbus.mk b/src/dbus.mk
index 60d7324..34d4bb1 100644
--- a/src/dbus.mk
+++ b/src/dbus.mk
@@ -1,27 +1,25 @@
-# This file is part of mingw-cross-env.
-# See doc/index.html for further information.
+# This file is part of MXE.
+# See index.html for further information.
-# dbus
PKG := dbus
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 1.5.0
-$(PKG)_CHECKSUM := 4f0c82af6de628d7359dcdbc0da402f8e369e367
+$(PKG)_CHECKSUM := 3140ea452337d664dbe6d30f0d990c756d101694
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
-$(PKG)_WEBSITE := http://$(PKG).freedesktop.org/
$(PKG)_URL := http://$(PKG).freedesktop.org/releases/$(PKG)/$($(PKG)_FILE)
$(PKG)_DEPS := gcc expat
define $(PKG)_UPDATE
wget -q -O- 'http://cgit.freedesktop.org/dbus/dbus/refs/tags' | \
$(SED) -n "s,.*<a href='[^']*/tag/?id=[^0-9]*\\([0-9][^']*\\)'.*,\\1,p" | \
- grep -v '^1\.[0123]\.' | \
+ grep -v '^1\.[01234]\.' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
+ --build="`config.guess`" \
--prefix='$(PREFIX)/$(TARGET)' \
--with-xml=expat \
--disable-tests \
@@ -29,8 +27,6 @@ define $(PKG)_BUILD
--disable-asserts \
--disable-shared \
--enable-static \
- --disable-tests \
- --disable-standalone-tests \
--disable-silent-rules
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef