mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 10:14:37 +08:00
29 lines
696 B
Bash
29 lines
696 B
Bash
pkgname=dbus-glib
|
|
pkgver=0.108
|
|
pkgrel=1
|
|
pkgdesc="GLib bindings for DBUS"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://www.freedesktop.org/wiki/Software/DBusBindings"
|
|
depends=('dbus' 'glib2')
|
|
makedepends=('pkgconfig')
|
|
options=('!emptydirs')
|
|
source=("http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('a66a613705870752ca9786e0359aea97')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--enable-static=no \
|
|
--enable-bash-completion=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|