blob: d24a28a0c6434baa8864a47539a7858dc8a2fb75 (
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
|
# Maintainer: cmulk <cjmulk2@gmail.com>
pkgname=sirikali-bin
_name=SiriKali
pkgver=1.8.2
pkgrel=1
pkgdesc="A Qt/C++ GUI front end to sshfs, ecryptfs-simple, cryfs, gocryptfs, securefs, fscrypt and encfs"
arch=('i686' 'x86_64')
url="https://mhogomchungu.github.io/sirikali/"
license=('GPL')
depends=('qt5-base' 'libpwquality' 'hicolor-icon-theme')
optdepends=('lxqt_wallet: use an external lxqt_wallet (must recompile)'
'libsecret: support for Gnome libsecret password storage (must recompile)'
'kwallet5: support for KDE wallet storage (must recompile)'
'cryfs: for CryFS backend'
'ecryptfs-simple: for eCryptfs backend'
'encfs: for EncFS backend'
'fscrypt: for fscrypt backend'
'gocryptfs: for gocryptfs backend'
'securefs: for securefs backend'
'sshfs: for SSHFS backend')
conflicts=("sirikali-git" "sirikali")
source_x86_64=("https://download.opensuse.org/repositories/home:/obs_mhogomchungu/Debian_12/amd64/sirikali_1.8.2-1_amd64.deb")
sha256sums_x86_64=("a72e20636d22657d7a55c8fed4a248269254a5c70ee66e56b766b4b862ed05bc")
source_i686=("https://download.opensuse.org/repositories/home:/obs_mhogomchungu/Debian_12/i386/sirikali_1.8.2-1_i386.deb")
sha256sums_i686=("0d9f9dbee20fe597d29c1ded53c908e2aaab235d2037923f21df6134f56da9c5")
package() {
cd "$srcdir/"
tar xaf data.tar.xz -C $pkgdir
cd $pkgdir/usr/share/applications
# remove mimetype which causes all folder to open in sirikali
grep -iv mimetype io.github.mhogomchungu.sirikali.desktop >tmp
mv -f tmp io.github.mhogomchungu.sirikali.desktop
}
|