blob: c9476a217c309ebbfd4985542e9c677bb529bbe6 (
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
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: knedl1k <knedl1k At tuta Dot io>
# Contributor: Jef Roosens
# Contributor: krazykirby99999 krazykirby99999-at-gmail-dot-com
# Contributor: ajbura, hbarsaiyan
pkgname='cinny-desktop-bin'
pkgver='4.6.0'
pkgrel='1'
pkgdesc='Matrix client focusing primarily on a simple, elegant and secure interface (binary release)'
arch=('x86_64')
url='https://cinny.in/'
license=('AGPL-3.0')
# https://tauri.studio/v1/guides/getting-started/prerequisites#1-system-dependencies
depends=(
'webkit2gtk'
'openssl-1.1' # Binary release is currently still built using OpenSSL 1.1.1
'gtk3'
'appmenu-gtk-module'
'libappindicator-gtk3'
'librsvg'
'libvips'
'sqlite'
'gst-plugins-good'
)
conflicts=('cinny-desktop')
provides=('cinny-desktop')
source_x86_64=("${pkgname}-${pkgver}-x86_64.deb::https://github.com/cinnyapp/cinny-desktop/releases/download/v${pkgver}/Cinny_desktop-x86_64.deb")
sha256sums_x86_64=('4b2d27871cccf437e9817dde8162c906f2ec6738c504c8693fac674a1a05d824')
install="${pkgname}.install"
package() {
tar -xzf 'data.tar.gz' -C "${pkgdir}"
}
|