forked from ports/compat-32
29 lines
721 B
Plaintext
29 lines
721 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.8.10
|
|
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 \
|
|
--mandir=/usr/man \
|
|
--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}
|
|
rm -rf $PKG/usr/man
|
|
}
|