compat-32/dbus-32/Pkgfile

28 lines
694 B
Plaintext
Raw Normal View History

# Description: A message bus system
2017-03-02 12:18:19 +01:00
# URL: https://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
2017-03-02 12:18:19 +01:00
version=1.10.16
release=1
2017-03-02 12:18:19 +01:00
source=(https://${name%-*}.freedesktop.org/releases/${name%-*}/${name%-*}-$version.tar.gz)
build() {
2017-03-02 12:18:19 +01:00
cd ${name%-*}-$version
2015-05-16 20:37:01 +02:00
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--with-dbus-daemondir=/usr/sbin \
--localstatedir=/var \
--libexecdir=/usr/lib32/dbus \
--with-dbus-user=messagebus \
2015-11-21 03:29:44 +01:00
--with-init-scripts=none \
--with-system-pid-file=/var/run/dbus/dbus.pid
2015-05-16 20:37:01 +02:00
make
make DESTDIR=$PKG install
2014-06-20 12:55:12 +02:00
2014-06-22 10:18:09 +02:00
rm -r $PKG/var $PKG/usr/{bin,etc,include,sbin,share}
}