summaryrefslogtreecommitdiff
path: root/nonsystemd-multilib
diff options
context:
space:
mode:
Diffstat (limited to 'nonsystemd-multilib')
-rw-r--r--nonsystemd-multilib/lib32-dbus/PKGBUILD77
1 files changed, 77 insertions, 0 deletions
diff --git a/nonsystemd-multilib/lib32-dbus/PKGBUILD b/nonsystemd-multilib/lib32-dbus/PKGBUILD
new file mode 100644
index 000000000..151aa37b4
--- /dev/null
+++ b/nonsystemd-multilib/lib32-dbus/PKGBUILD
@@ -0,0 +1,77 @@
+# $Id$
+# Contributor (Arch): Ionut Biru <ibiru@archlinux.org>
+# Maintainer: David P. <megver83@parabola.nu>
+
+pkgname=lib32-dbus
+_pkgbasename=dbus
+pkgver=1.12.6
+pkgrel=1
+pkgrel+=.nonsystemd1
+pkgdesc="Freedesktop.org message bus system (32-bit)"
+url="https://wiki.freedesktop.org/www/Software/dbus/"
+arch=(x86_64)
+license=(GPL custom)
+provides=(lib32-libdbus)
+conflicts=(lib32-libdbus)
+replaces=(lib32-libdbus)
+depends=(dbus)
+makedepends=(lib32-gcc-libs lib32-glib2 lib32-expat git autoconf-archive lib32-libx11)
+_commit=a723baa2bc7e91fc9b1926cda1ce53e9301de4d8 # tags/dbus-1.12.6^0
+source=("git+https://anongit.freedesktop.org/git/dbus/dbus#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd dbus
+ git describe --tags | sed 's/^dbus-//;s/-/+/g'
+}
+
+prepare() {
+ cd dbus
+ git cherry-pick -n 09cb6d7b467f6d1c6685ee9ccc171f4dddbe1f42
+ NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+ export CC="gcc -m32"
+ export CXX="g++ -m32"
+ export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+ cd dbus
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --libdir=/usr/lib32 \
+ --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-static \
+ --disable-verbose-mode \
+ --disable-asserts \
+ --disable-checks \
+ --without-systemdsystemunitdir \
+ --disable-systemd \
+ --disable-user-session
+ make
+}
+
+check() {
+ cd dbus
+ make check
+}
+
+package() {
+ cd dbus
+
+ make DESTDIR="$pkgdir" install
+
+ rm -r "$pkgdir"/usr/{bin,include,lib,share}
+ rm -r "$pkgdir"/{etc,var}
+
+ install -d "$pkgdir/usr/share/licenses"
+ ln -s dbus "$pkgdir/usr/share/licenses/$pkgname"
+}