mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:37:14 +08:00
28 lines
686 B
Bash
28 lines
686 B
Bash
#
|
|
# Chakra Packages, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
#
|
|
pkgname=dbus-python
|
|
pkgver=1.1.1
|
|
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' 'python2')
|
|
makedepends=('pkg-config' 'docutils')
|
|
options=('!libtool')
|
|
source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('742c7432ad0f7c3f98291d58fa2e35dc')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
PYTHON=python2 ./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
} |