blob: e47b38922a2f705509f8499503499d5de9f6db4e (
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
|
# Maintainer: Gerardo Junior <me@gerardo-junior.com>
# Maintainer: Xaver Hellauer <software@hellauer.bayern>
pkgname=tresorit
pkgver=3.5.1192.4010
pkgrel=1
pkgdesc='Encrypted cloud storage for your confidential files. Using Tresorit, files are encrypted before being uploaded to the cloud. Start encrypting files for free.'
arch=('i686' 'x86_64')
url="http://www.tresorit.com/"
install=tresorit.install
license=('custom:tresorit')
depends=(bash libglvnd)
makedepends=('xxd' 'sed')
source=("tresorit_installer_${pkgver}.run::https://installerstorage.blob.core.windows.net/public/install/tresorit_installer.run"
"https://support.tresorit.com/hc/article_attachments/360009964719/check_signature.sh"
"tresorit.service")
sha512sums=('f51f7afb574ec1f54180ff543c78351a9b1f325e945fe2965a7c3e21ca011dbdc08a044270aab45e9872de5fa1b114b063449d2196510adb795edb29a77084bd'
'5893b9ebaa62e5fb3c4c491532b19fce5c2f52be3caee03b47ce99a347da56b08712add62f8039fdffec18d7f7ff77198d9698e91a1f6f765290d124c516661c'
'58aa3738fd17d5930ed76b9491a3ef0dd481b918f5329b56650e6d77078ad74caeea60c9cf83d524a483a9be7fc41aba2712400922d4ab3db775f1c2a1365765')
prepare() {
# NOTE: signature verification is temporarily disabled because it no longer
# works with OpenSSL 3. I reached out to tresorit via email, asking them to
# update their script to work with OpenSSL 3.
# # Validate signature
# sed -i -- "s/tresorit_installer.run/tresorit_installer_${pkgver}.run/g" check_signature.sh
# chmod u+x check_signature.sh
# VERIFICATION_RESULT=`./check_signature.sh`
# echo "$VERIFICATION_RESULT"
# if [ "$VERIFICATION_RESULT" != "Verified OK" ]; then
# echo " ! Binary signature verification failed"
# exit 1
# fi
SKIP=`head tresorit_installer_${pkgver}.run | grep "^SKIP" | sed 's/SKIP=//'`
mkdir -p tresorit
tail -n+$SKIP tresorit_installer_${pkgver}.run | tar xz -C tresorit
}
package() {
mkdir -p "${pkgdir}/opt/$pkgname"
install -Dm755 ../archlinux_user_install "$pkgdir/opt/tresorit/archlinux_user_install"
install -Dm755 ../systemd_runner "$pkgdir/opt/tresorit/systemd_runner"
install -Dm644 "$srcdir"/tresorit.service "$pkgdir"/usr/lib/systemd/user/tresorit.service
if [ $CARCH == "x86_64" ]; then
cp -r ./tresorit/tresorit_x64/* "$pkgdir/opt/$pkgname"
else
cp -r ./tresorit/tresorit_x86/* "$pkgdir/opt/$pkgname"
fi
echo "Exec=\$HOME/.local/share/tresorit/tresorit --hidden" >> "${pkgdir}"/opt/tresorit/tresorit.desktop
echo "Icon=/opt/tresorit/tresorit.png" >> "${pkgdir}"/opt/tresorit/tresorit.desktop
mkdir -p "${pkgdir}"/usr/share/licenses/tresorit
ln -s /opt/tresorit/LICENSES.txt \
"${pkgdir}"/usr/share/licenses/tresorit/LICENSE
}
|