mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 02:20:05 +00:00
17 lines
340 B
Plaintext
Executable File
17 lines
340 B
Plaintext
Executable File
# description : Python3 bindings to the D-Bus
|
|
# depends : dbus python3 dbus-glib
|
|
|
|
name=python3-dbus
|
|
version=1.2.18
|
|
release=1
|
|
source="http://dbus.freedesktop.org/releases/dbus-python/dbus-python-$version.tar.gz"
|
|
|
|
build() {
|
|
cd dbus-python-$version
|
|
|
|
PYTHON=/usr/bin/python3 \
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|