blob: c6bc6f923ae35384c501a865e7469bb88728e93e (
plain)
1 # Description: Common code for Synapse, Sydent and Sygnal
2 # URL: https://github.com/matrix-org/matrix-python-common
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-build python3-installer
5
6 name=python3-matrix-common
7 version=1.3.0
8 release=1
9 source=(https://pypi.org/packages/source/m/matrix_common/matrix_common-$version.tar.gz)
10
11 build() {
12 cd matrix_common-$version
13 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
14 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
15 }
|