forked from ports/contrib
19 lines
475 B
Plaintext
19 lines
475 B
Plaintext
# Description: Low-level, pure Python DBus protocol wrapper
|
|
# URL: https://gitlab.com/takluyver/jeepney
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-jeepney
|
|
version=0.7.1
|
|
release=1
|
|
source=(https://pypi.io/packages/source/j/jeepney/jeepney-$version.tar.gz)
|
|
|
|
build() {
|
|
cd jeepney-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build \
|
|
-O1
|
|
}
|