core/dbus-python/PKGBUILD

23 lines
681 B
Bash
Raw Normal View History

2010-04-07 03:23:26 +08:00
# $Id: PKGBUILD 75824 2010-04-04 12:03:46Z jgc $
# Contributor: Jan de Groot <jgc@archlinux.org>
2010-03-14 23:48:48 +08:00
pkgname=dbus-python
2011-03-25 06:48:41 +08:00
pkgver=0.83.2
pkgrel=1
2010-03-14 23:48:48 +08:00
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'
2010-03-14 23:48:48 +08:00
options=('!libtool')
source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
2011-03-25 06:48:41 +08:00
md5sums=('4ebcaa905bdcb4132b915196b0a3691b')
2010-03-14 23:48:48 +08:00
build() {
2010-04-07 03:23:26 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
2011-03-25 06:48:41 +08:00
PYTHON=python ./configure --prefix=/usr || return 1
2010-03-14 23:48:48 +08:00
make || return 1
2010-04-07 03:23:26 +08:00
make DESTDIR="${pkgdir}" install || return 1
2010-03-14 23:48:48 +08:00
}