compat-32/dbus-32/Pkgfile
2015-11-19 01:12:00 +11:00

29 lines
680 B
Plaintext

# Description: A message bus system
# URL: http://freedesktop.org/wiki/Software/dbus
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: expat-32 dbus
name=dbus-32
version=1.10.2
release=1
source=(http://dbus.freedesktop.org/releases/dbus/dbus-$version.tar.gz)
build() {
cd dbus-$version
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--with-dbus-daemondir=/usr/sbin \
--localstatedir=/var \
--libexecdir=/usr/lib32/dbus \
--disable-static \
--with-dbus-user=messagebus \
--with-xml=expat \
--with-system-pid-file=/var/run/dbus/dbus.pid
make
make DESTDIR=$PKG install
rm -r $PKG/var $PKG/usr/{bin,etc,include,sbin,share}
}