# $Id: PKGBUILD 200253 2013-11-23 20:09:30Z tomegun $ # Maintainer: Tom Gundersen # Maintainer: Jan de Groot # Contributor: Link Dupont # pkgname=dbus pkgver=1.6.18 pkgrel=1 pkgdesc="Freedesktop.org message bus system" url="http://www.freedesktop.org/Software/dbus" arch=(i686 x86_64) license=('GPL' 'custom') depends=('expat' 'coreutils' 'filesystem') makedepends=('libx11' 'systemd') optdepends=('libx11: dbus-launch support') provides=('dbus-core') conflicts=('dbus-core') replaces=('dbus-core') source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz 30-dbus systemd-user-session.patch memleak.patch) md5sums=('b02e9c95027a416987b81f9893831061' '3314d727fa57fc443fce25b5cbeebbcc' 'd8a1bd529b3ddca671ee1a695a143db9' 'cf86d68e39d975cec1e9f0342eb9b142') prepare() { cd dbus-$pkgver patch -Np1 -i ../systemd-user-session.patch patch -Np1 -i ../memleak.patch } build() { cd dbus-$pkgver ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ --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-dnotify \ --disable-verbose-mode --disable-static \ --disable-tests --disable-asserts \ --with-systemdsystemunitdir=/usr/lib/systemd/system \ --enable-systemd make } package(){ cd dbus-$pkgver make DESTDIR="$pkgdir" install rm -rf "$pkgdir/var/run" install -Dm755 ../30-dbus "$pkgdir/etc/X11/xinit/xinitrc.d/30-dbus" install -Dm644 COPYING "$pkgdir/usr/share/licenses/dbus/COPYING" }