blob: e6953243724d204da32435f86c583db84c70eae1 (
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
|
# Maintainer: Stephan Springer <buzo+arch@Lini.de>
# Contributor: Gui||aume <michaudg@gmail.com>
pkgname=rocketchat-client-bin
pkgver=2.14.5
pkgrel=1
pkgdesc="The Ultimate Open Source Web Chat Platform"
arch=('x86_64')
license=('MIT')
url='https://rocket.chat'
depends=('gtk3' 'nss' 'gconf' 'libxss')
optdepends=('libnotify: For sending desktop notifications')
source=("https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${pkgver}/rocketchat_${pkgver}_amd64.deb"
'LICENSE')
sha256sums=('d562c5d51d059dc7f85b793b6ed3b27a178dae64ca3fc807efaba4a63d3ab809'
'SKIP')
package() {
cd "$pkgdir"
tar -xf "$srcdir"/data.tar.xz
chmod -R go-w .
mkdir -m 755 -p usr/bin
ln -s ../../opt/Rocket.Chat/rocketchat-desktop usr/bin
install -Dm644 "$srcdir"/LICENSE usr/share/licenses/"$pkgname"/LICENSE
}
|