blob: 173459d5fb8cb36a4050cc72224e7b1502a67b05 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: Conor Anderson <conor@conr.ca>
# Adopted from: Félix Saparelli <aur@passcod.name>
pkgname=sirikali-git
_pkgname=${pkgname%-git}
pkgver=1.4.6.r9.d73a7ab
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')
makedepends=('git' 'cmake' 'libgcrypt' 'gcc-libs')
optdepends=('lxqt_wallet: use an external lxqt_wallet (must recompile)'
'libsecret: support for Gnome libsecret password storage (must recompile)'
'kwallet: 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')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('sirikali::git+https://github.com/mhogomchungu/sirikali.git')
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${_pkgname}"
printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}
prepare() {
cd "$srcdir/${_pkgname}"
mkdir -p build
if pacman -Qs "lxqt_wallet" > /dev/null ; then
intwallet="false"
else
intwallet="true"
fi
if pacman -Qs "kwallet" > /dev/null ; then
kdeopt="false"
else
kdeopt="true"
fi
if pacman -Qs "libsecret" > /dev/null ; then
gnomeopt="false"
else
gnomeopt="true"
fi
}
build() {
cd "$srcdir/${_pkgname}/build"
cmake \
-DCMAKE_BUILD_TYPE=RELEASE \
-DCMAKE_INSTALL_PREFIX=/usr \
-DINTERNAL_LXQT_WALLET=$intwallet \
-DNOKDESUPPORT=$kdeopt \
-DNOSECRETSUPPORT=$gnomeopt \
-DQT5=true \
. ..
make
}
package() {
cd "$srcdir/${_pkgname}/build"
make DESTDIR="$pkgdir/" install
}
|