mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
21 lines
586 B
Plaintext
Executable File
21 lines
586 B
Plaintext
Executable File
# description : Common dbus-python files shared between python2-dbus and python3-dbus
|
|
# homepage : https://www.freedesktop.org/wiki/Software/DBusBindings
|
|
# maintainer : Emmett1, emmett1.2miligrams at gmail.com
|
|
# depends : dbus python3 dbus-glib
|
|
|
|
name=python-dbus-common
|
|
version=1.2.12
|
|
release=1
|
|
source=(http://dbus.freedesktop.org/releases/dbus-python/dbus-python-$version.tar.gz)
|
|
md5sum=(428b7a9e7e2d154a7ceb3e13536283e4)
|
|
|
|
build() {
|
|
cd dbus-python-$version
|
|
|
|
PYTHON=/usr/bin/python3 \
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install-data
|
|
rm -rf $PKG/usr/lib/python*
|
|
}
|