core/dbus-python/PKGBUILD
2012-06-11 22:03:20 +00:00

28 lines
687 B
Bash

#
# Chakra Packages, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
#
pkgname=dbus-python
pkgver=0.84.0
pkgrel=3
pkgdesc="Python bindings for DBUS"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL')
url="http://www.freedesktop.org/wiki/Software/DBusBindings"
depends=('dbus-glib' 'python2')
makedepends=('pkg-config' 'docutils')
options=('!libtool')
source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('fe69a2613e824463e74f10913708c88a')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
PYTHON=python2 ./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}