mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-16 21:32:22 +01:00
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=py-dbus
|
|
pkgver=1.2.0
|
|
pkgrel=0
|
|
pkgdesc="Python bindings for DBUS"
|
|
url="http://www.freedesktop.org/wiki/Software/DBusBindings"
|
|
arch="all"
|
|
license="GPL LGPL"
|
|
depends="python>=2.6.5"
|
|
makedepends="pkgconfig dbus-glib-dev python-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://dbus.freedesktop.org/releases/dbus-python/dbus-python-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/dbus-python-$pkgver
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
|| return 1
|
|
make || return 1
|
|
make test || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
find $pkgdir -iname *.la -delete
|
|
}
|
|
|
|
md5sums="b09cd2d1a057cc432ce944de3fc06bf7 dbus-python-1.2.0.tar.gz"
|
|
sha256sums="e12c6c8b2bf3a9302f75166952cbe41d6b38c3441bbc6767dbd498942316c6df dbus-python-1.2.0.tar.gz"
|
|
sha512sums="013b23e08fa1ed43f53a756587fefbc9770f7c51e93510e555acbd77230b7200693419bba9a69680d790bbaf123f4a195afa38b3eee1143da950fee0b5130bce dbus-python-1.2.0.tar.gz"
|