mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:37:15 +08:00
23 lines
681 B
Bash
23 lines
681 B
Bash
# $Id: PKGBUILD 75824 2010-04-04 12:03:46Z jgc $
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=dbus-python
|
|
pkgver=0.83.2
|
|
pkgrel=1
|
|
pkgdesc="Python bindings for DBUS"
|
|
arch=(i686 x86_64)
|
|
license=('GPL' 'LGPL')
|
|
url="http://www.freedesktop.org/wiki/Software/DBusBindings"
|
|
depends=('dbus-glib>=0.82' 'python>=2.7')
|
|
makedepends=('pkgconfig') # 'docutils'
|
|
options=('!libtool')
|
|
source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('4ebcaa905bdcb4132b915196b0a3691b')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
PYTHON=python ./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|