mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
29 lines
917 B
Plaintext
29 lines
917 B
Plaintext
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
pkgname=riot-web
|
|
pkgver=0.13.4
|
|
pkgrel=0
|
|
pkgdesc="A glossy Matrix collaboration client for the web"
|
|
url="http://riot.im/"
|
|
arch="noarch"
|
|
options="!check"
|
|
license="Apache-2.0"
|
|
source="https://github.com/vector-im/riot-web/releases/download/v$pkgver/riot-v$pkgver.tar.gz"
|
|
builddir="$srcdir/riot-v$pkgver"
|
|
|
|
build() {
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"/usr/share/webapps \
|
|
"$pkgdir"/etc/riot-web
|
|
cp -r "$builddir" "$pkgdir"/usr/share/webapps/riot-web
|
|
mv "$pkgdir"/usr/share/webapps/riot-web/config.sample.json \
|
|
"$pkgdir"/etc/riot-web
|
|
ln -sf /etc/riot-web/config.json \
|
|
"$pkgdir"/usr/share/webapps/riot-web/config.json
|
|
}
|
|
|
|
sha512sums="ddf6fa174b262036933a2566e00f260c8f408ddfc221b5045f37ea74a25d283d5557cd64f860517c16ae396b404ee162f2e66fb31db1231456255b12ff9c5c9c riot-v0.13.4.tar.gz"
|