Files
ports/core/python-dbus-common/spkgbuild
2017-11-14 14:02:57 +08:00

24 lines
606 B
Plaintext
Executable File

# description : Common dbus-python files shared between python2-dbus and python3-dbus
# homepage : http://www.freedesktop.org/wiki/Software/DBusBindings
# maintainer : Emmett1, emmett1.2miligrams at gmail.com
# depends : dbus python3
# makedepends : dbus-glib
name=python-dbus-common
version=1.2.4
release=1
source=(http://dbus.freedesktop.org/releases/dbus-python/dbus-python-$version.tar.gz)
build() {
cd dbus-python-$version
mkdir python3
pushd python3
PYTHON=/usr/bin/python3 \
../configure --prefix=/usr
make
popd
make -C python3 DESTDIR=$PKG install-data
rm -rf $PKG/usr/lib/python*
}