# Maintainer: Alexey D. # Contributor: Jan de Groot # Contributor: Link Dupont # pkgname=dbus-nosystemd pkgver=1.8.0 pkgrel=1 pkgdesc="Freedesktop.org message bus system" url="http://www.freedesktop.org/Software/dbus" arch=(i686 x86_64) license=('GPL' 'custom') # dep on shadow for install scriptlet FS#29341 depends=('expat' 'coreutils' 'filesystem' 'shadow') makedepends=('libx11' 'xmlto' 'docbook-xsl') optdepends=('libx11: dbus-launch support') provides=('dbus-core' "dbus=${pkgver}" "libdbus=${pkgver}") conflicts=('dbus-core' 'dbus' 'libdbus') replaces=('dbus-core' 'dbus' 'libdbus') install=dbus-nosystemd.install source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz #{,.asc} 30-dbus dbus) md5sums=('059fbe84e39fc99c67a14f15b1f39dff' '3314d727fa57fc443fce25b5cbeebbcc' '6f116e46adcbe99326ee67e597598d29') 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-verbose-mode \ --disable-static \ --disable-tests \ --disable-asserts \ --disable-systemd make } package(){ cd dbus-$pkgver make DESTDIR="$pkgdir" install rm -rf "$pkgdir/var/run" install -Dm755 ../dbus "$pkgdir/etc/rc.d/dbus" install -Dm755 ../30-dbus "$pkgdir/etc/X11/xinit/xinitrc.d/30-dbus" install -Dm644 COPYING "$pkgdir/usr/share/licenses/dbus/COPYING" }