blob: 437e8875a977ea72a7fc2219b8e36a4287b6b778 (
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.6
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=('6f4bd403cc8952a97cbd9c123baf12cfd8e77b1ea0df7499b0d876811923759f'
'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
}
|