blob: 9666a2db04706bcb12c5bc6be8161ea77c0c2d2f (
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.17.0
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=('e7b66200f77adc651c3de8351ef63aff116b76d6a43b82e399fd92a9444c069c'
'362e3ce451a4aa3e51e5728a2102b01135827d3a4af0a450b672c54540dec5c5')
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
}
|