mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
57 lines
1.6 KiB
Bash
57 lines
1.6 KiB
Bash
pkgbase=dbus
|
|
pkgname=('dbus' 'libdbus')
|
|
pkgver=1.10.12
|
|
pkgrel=1
|
|
pkgdesc="Freedesktop.org message bus system"
|
|
url="http://www.freedesktop.org/Software/dbus"
|
|
arch=('x86_64')
|
|
license=('GPL' 'custom')
|
|
makedepends=('libx11' 'systemd' 'xmlto' 'docbook-xsl')
|
|
source=(http://dbus.freedesktop.org/releases/dbus/dbus-$pkgver.tar.gz)
|
|
md5sums=('bacef77336bbe588efa3124102d5fcdb')
|
|
|
|
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 \
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system \
|
|
--enable-systemd --enable-user-session
|
|
make
|
|
}
|
|
|
|
package_dbus(){
|
|
depends=('libdbus' 'expat')
|
|
optdepends=('libx11: dbus-launch support')
|
|
provides=('dbus-core')
|
|
conflicts=('dbus-core')
|
|
replaces=('dbus-core')
|
|
|
|
cd dbus-$pkgver
|
|
|
|
# Disable installation of libdbus
|
|
sed -i -e 's/^SUBDIRS = dbus/SUBDIRS =/' Makefile
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
rm -rf "${pkgdir}/var/run"
|
|
rm -rf "${pkgdir}/usr/lib/pkgconfig"
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/dbus/COPYING"
|
|
}
|
|
|
|
package_libdbus(){
|
|
pkgdesc="DBus library"
|
|
depends=('glibc')
|
|
|
|
cd dbus-$pkgver
|
|
make DESTDIR="$pkgdir" -C dbus install
|
|
make DESTDIR="$pkgdir" install-data-am
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/libdbus/COPYING"
|
|
}
|