summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a8ad040e85eef69d4712e0346326e28308fa2e86 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Maintainer: A Christensen <fauxmight@ivories.org>
# Contributor: Midov <midov@midov.pl>

_pkgname=pantalaimon
pkgname="${_pkgname}"-git
pkgver=e62cfe0
pkgrel=1
pkgdesc="Pantalaimon is an end-to-end encryption aware Matrix reverse proxy daemon."
arch=('x86_64')
url="https://github.com/matrix-org/pantalaimon"
license=('Apache')
depends=('python' 'libolm' 'python-matrix-nio' 'python-prompt_toolkit' 'python-janus' 'python-peewee' 'python-logbook' 'python-aiohttp' 'python-cachetools' 'python-pycryptodome' 'python-unpaddedbase64' 'python-h2' 'python-h11' 'python-notify2' 'python-pydbus' 'python-olm' 'python-jsonschema' 'python-atomicwrites' 'python-click' 'python-appdirs' 'python-keyring>=21.2.1' 'python-future')
makedepends=('git' 'python-setuptools')
provides=($_pkgname)
conflicts=($_pkgname)
source=("${_pkgname}::git+https://github.com/matrix-org/pantalaimon"
        "${_pkgname}.service")
sha256sums=('SKIP'
            'cf693e0324a7f2965bc9e64ab2c3d75137e7993503ddb3ae3dddc84af6c0b0e9')

pkgber() {
        cd "${_pkgname}"
        git describe --always | sed -e 's|-|.|g' -e 's|v||'
}

build() {
        cd "${_pkgname}"
}

package() {
        cd "${_pkgname}"
        python setup.py install --prefix=/usr --root="$pkgdir"
        install -Dm644 "${srcdir}"/pantalaimon.service "${pkgdir}"/usr/lib/systemd/user/pantalaimon.service
	install -Dm644 "${srcdir}"/"${_pkgname}"/docs/man/*.md -t "${pkgdir}"/usr/share/doc/"${_pkgname}"/
	install -Dm644 "${srcdir}"/"${_pkgname}"/docs/man/*.1 -t "${pkgdir}"/usr/share/man/man1/
	install -Dm644 "${srcdir}"/"${_pkgname}"/docs/man/*.5 -t "${pkgdir}"/usr/share/man/man5/
	install -Dm644 "${srcdir}"/"${_pkgname}"/docs/man/*.8 -t "${pkgdir}"/usr/share/man/man8/
	install -Dm644 "${srcdir}"/"${_pkgname}"/LICENSE -t "${pkgdir}"/usr/share/licenses/"${_pkgname}"/
}

# vim:set ts=2 sw=2 et: