blob: 45c302a0bf7c8101ebedbc3fbbb557dc1617ed09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Lorenz Steinert <lsteinert@uraziel.de>
pkgname=python-matrix-synapse-shared-secret-auth
_name=${pkgname#python-}
pkgver=2.0.1
pkgrel=2
pkgdesc="Shared Secret Authenticator password provider module for Matrix Synapse"
url="https://github.com/devture/matrix-synapse-shared-secret-auth"
arch=('x86_64')
license=('AGPL')
makedepends=('python-setuptools')
depends=('python' 'matrix-synapse')
source=("https://github.com/devture/${_name}/archive/${pkgver}.tar.gz")
sha256sums=("aa8e698645abd95a2be2fc85041a035711a45c493c396e3de6de283041f59d98")
build() {
cd "${srcdir}/${_name}-${pkgver}"
python setup.py build
}
package() {
cd "${srcdir}/${_name}-${pkgver}"
python setup.py install --root=${pkgdir} --optimize=1 --skip-build
}
|