Date: Tuesday, September 25, 2018 @ 13:06:21 Author: lcarlier Revision: 384801
upgpkg: lib32-dbus 1.12.10-1 upstream update 1.12.10 Modified: lib32-dbus/trunk/PKGBUILD ----------+ PKGBUILD | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-09-25 12:42:34 UTC (rev 384800) +++ PKGBUILD 2018-09-25 13:06:21 UTC (rev 384801) @@ -2,7 +2,7 @@ pkgname=lib32-dbus _pkgbasename=dbus -pkgver=1.12.8 +pkgver=1.12.10 pkgrel=1 pkgdesc="Freedesktop.org message bus system (32-bit)" url="https://wiki.freedesktop.org/www/Software/dbus/" @@ -13,7 +13,7 @@ replaces=(lib32-libdbus) depends=(lib32-systemd dbus) makedepends=(gcc-multilib lib32-glib2 lib32-expat git autoconf-archive) -_commit=f8902fa1c840e3fab807016e6a00647b6ef9dd41 # tags/dbus-1.12.8^0 +_commit=f98e784bb6f18b4c28feca6a6e9d12b7bf021a00 # tags/dbus-1.12.10^0 source=("git+https://anongit.freedesktop.org/git/dbus/dbus#commit=$_commit") sha256sums=('SKIP') @@ -35,28 +35,36 @@ cd dbus - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib32 \ - --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \ - --with-system-pid-file=/run/dbus/pid \ - --with-system-socket=/run/dbus/system_bus_socket \ - --with-console-auth-dir=/run/console/ \ - --enable-inotify --disable-static \ - --disable-verbose-mode --disable-asserts --disable-checks \ - --with-systemdsystemunitdir=/usr/lib/systemd/system \ - --enable-systemd --enable-user-session + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libdir=/usr/lib32 \ + --libexecdir=/usr/lib/dbus-1.0 \ + runstatedir=/run \ + --with-dbus-user=dbus \ + --with-system-pid-file=/run/dbus/pid \ + --with-system-socket=/run/dbus/system_bus_socket \ + --with-console-auth-dir=/run/console/ \ + --enable-inotify \ + --disable-static \ + --disable-verbose-mode \ + --disable-asserts \ + --disable-checks \ + --with-systemdsystemunitdir=/usr/lib/systemd/system \ + --enable-systemd \ + --enable-user-session \ + --without-x make } check() { - cd dbus - make check + make -C dbus check } package() { - cd dbus + make DESTDIR="$pkgdir" -C dbus install - make DESTDIR="$pkgdir" install - rm -r "$pkgdir"/usr/{bin,include,lib,share} rm -r "$pkgdir"/{etc,var}
