27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
# Description: Matrix reference homeserver
|
|
# URL: https://github.com/matrix-org/synapse
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-bcrypt python3-bleach python3-ijson python3-netaddr python3-phonenumbers python3-pillow python3-prometheus_client python3-pymacaroons python3-pysaml2 python3-signedjson-compat python3-sortedcontainers python3-treq python3-yaml
|
|
# Optional: python3-hiredis python3-lxml python3-psutil python3-psycopg2 python3-pyjwt python3-txredisapi psycopg2
|
|
|
|
name=matrix-synapse
|
|
version=1.61.0
|
|
release=1
|
|
source=(https://github.com/matrix-org/synapse/archive/v$version/$name-$version.tar.gz
|
|
synapse.service)
|
|
|
|
build() {
|
|
cd synapse-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m install --optimize=1 --destdir=$PKG dist/*.whl
|
|
|
|
# fix bin dir
|
|
chmod +x $PKG/usr/bin/*
|
|
|
|
install -dm0700 -o synapse -g synapse /etc/synapse
|
|
install -dm0700 -o synapse -g synapse /var/lib/synapse
|
|
install -Dm0755 -o root -g root $SRC/synapse.service \
|
|
$PKG/etc/rc.d/synapse
|
|
}
|