summaryrefslogtreecommitdiffstats
path: root/src/dbus.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/dbus.mk')
-rw-r--r--src/dbus.mk10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/dbus.mk b/src/dbus.mk
index 60d7324..ed2836a 100644
--- a/src/dbus.mk
+++ b/src/dbus.mk
@@ -4,8 +4,8 @@
# dbus
PKG := dbus
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 1.5.0
-$(PKG)_CHECKSUM := 4f0c82af6de628d7359dcdbc0da402f8e369e367
+$(PKG)_VERSION := 1.5.8
+$(PKG)_CHECKSUM := c5e9e286b5757f892cc21f894145e7f05c8fc813
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://$(PKG).freedesktop.org/
@@ -15,12 +15,12 @@ $(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 \
+ cd '$(1)' && automake && ./configure \
--host='$(TARGET)' \
--prefix='$(PREFIX)/$(TARGET)' \
--with-xml=expat \
@@ -29,8 +29,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