blob: aaa8886ec0817b314760612e6247e56c4a35a5b6 (
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
38
39
40
41
42
43
|
# Maintainer: Conor Anderson <conor@conr.ca>
# Adopted from: FĂ©lix Saparelli <aur@passcod.name>
pkgname=sirikali-git
_pkgname=${pkgname%-git}
pkgver=1.6.0.r95.b3ac657
pkgrel=1
pkgdesc="A Qt/C++ GUI front end to sshfs, ecryptfs-simple, cryfs, gocryptfs, securefs, fscrypt and encfs"
arch=('i686' 'x86_64' 'aarch64')
url="https://mhogomchungu.github.io/sirikali/"
license=('GPL-3.0-only')
depends=('qt6-base' 'libpwquality' 'hicolor-icon-theme' 'libsecret')
makedepends=('git' 'cmake' 'libgcrypt' 'gcc-libs')
optdepends=('kwallet: password storage (either via libsecret or discovered via dbus)'
'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')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=('sirikali::git+https://github.com/mhogomchungu/sirikali.git')
sha256sums=('SKIP')
pkgver() {
cd ${_pkgname}
printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}
build() {
cmake \
-B build \
-S ${_pkgname} \
-DCMAKE_BUILD_TYPE=RELEASE \
-DBUILD_WITH_QT6=ON \
-DCMAKE_INSTALL_PREFIX=/usr
make -C build
}
package() {
make DESTDIR="$pkgdir/" -C build install
}
|