]> git.sev.monster Git - aports.git/blame - testing/synapse-admin/APKBUILD
testing/web2ldap: upgrade to 1.8.1
[aports.git] / testing / synapse-admin / APKBUILD
CommitLineData
c293a20c 1# Contributor: sev <alpine@sev.monster>
2# Maintainer: sev <alpine@sev.monster>
3pkgname=synapse-admin
4pkgver=0.8.5
5pkgrel=0
6pkgdesc="Admin UI for Matrix Synapse homeserver."
7url="https://github.com/Awesome-Technologies/synapse-admin"
8arch="all"
9license="Apache-2.0"
10makedepends="yarn"
11source="$pkgname-$pkgver.tar.gz::https://github.com/Awesome-Technologies/synapse-admin/archive/refs/tags/$pkgver.tar.gz"
12builddir="$srcdir/$pkgname-$pkgver"
13
14build() {
15 cd "$builddir" || exit 1
16 yarn install
17 yarn build
18}
19
20package() {
21 cd "$builddir" || exit 1
22 mkdir -p "$pkgdir/usr/share/webapps"
23 mv build "$pkgdir/usr/share/webapps/$pkgname"
24}
25
26sha512sums="
279b89e28963698f84e8ce8dfc5b82cdca56dd8f1ccd89bc8f0115ebdc5212214e628b6a37f3dc4ccca73016cfaba10a8f416c4d1a5ee145e184c9579cdcaa70c8 synapse-admin-0.8.5.tar.gz
28"
This page took 0.036811 seconds and 4 git commands to generate.