mirror of
https://gitdl.cn/https://github.com/chakralinux/lib32.git
synced 2025-01-24 18:04:16 +08:00
50 lines
1.6 KiB
Bash
50 lines
1.6 KiB
Bash
# Lib32 Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Anke Boersma <abveritas[at]chakra-project[dot]org>
|
|
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=lib32-libdbus
|
|
_pkgbasename=libdbus
|
|
pkgver=1.8.12
|
|
pkgrel=1
|
|
pkgdesc="DBus library (32-bit)"
|
|
arch=('x86_64')
|
|
url="http://www.freedesktop.org/Software/dbus"
|
|
license=('GPL' 'custom')
|
|
depends=('lib32-glibc' 'lib32-expat' 'libdbus' $_pkgbasename=$pkgver)
|
|
makedepends=('gcc-multilib' 'lib32-libx11')
|
|
provides=('lib32-dbus-core')
|
|
conflicts=('lib32-dbus-core')
|
|
replaces=('lib32-dbus-core')
|
|
source=("http://dbus.freedesktop.org/releases/dbus/dbus-${pkgver}.tar.gz")
|
|
md5sums=('0ca23fc84c09cb3d29b9c27811ff4475')
|
|
|
|
build() {
|
|
export CC="gcc -m32"
|
|
export CXX="g++ -m32"
|
|
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
|
|
|
|
cd "${srcdir}/dbus-${pkgver}"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib32 \
|
|
--libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
|
|
--with-system-pid-file=/var/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 --without-x \
|
|
--disable-systemd
|
|
make
|
|
}
|
|
package() {
|
|
cd "${srcdir}/dbus-${pkgver}"
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
|
|
rm -rf "${pkgdir}"/{etc,var}
|
|
|
|
mkdir -p "${pkgdir}/usr/share/licenses"
|
|
ln -s ${_pkgbasename} "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|