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