mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:37:15 +08:00
30 lines
932 B
Bash
30 lines
932 B
Bash
#
|
|
# Chakra Packages, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=dbus-glib
|
|
pkgver=0.92
|
|
pkgrel=1
|
|
pkgdesc="GLib bindings for DBUS"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="http://www.freedesktop.org/wiki/Software/DBusBindings"
|
|
depends=('dbus-core>=1.3.1' 'glib2>=2.24.1')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool' '!emptydirs')
|
|
source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('b595b36890c4f9f8f5d5dec131c495f8')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
|
|
--enable-static=no --enable-bash-completion=no || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|