blob: 8a4f0f786902e4c4f4fee382a2c9dfd9d0069854 (
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
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
# Co-Maintainer: Aaron J. Graves <linux@ajgraves.com>
pkgname=tutanota-desktop-bin
pkgver=250.241025.0
pkgrel=1
# branch needs to be one of 'release' or 'hotfix'. Default should be release, but change it to hotfix as upstream does.
branch="release"
pkgdesc="The desktop client for Tutanota, the secure e-mail service."
arch=('x86_64')
url="https://tuta.com/secure-email"
license=('GPL-3.0-or-later')
depends=(
'alsa-lib'
'gtk3'
'libsecret'
'nss'
)
makedepends=(
'openssl'
)
source=("${pkgname%-bin}-$pkgver.AppImage::https://github.com/tutao/tutanota/releases/download/${pkgname%-bin}-$branch-$pkgver/${pkgname%-bin}-linux.AppImage"
"linux-sig-$pkgver.bin::https://app.tuta.com/desktop/linux-sig.bin"
"tutao-pub-$pkgver.pem::https://github.com/tutao/tutanota/raw/${pkgname%-bin}-$branch-$pkgver/tutao-pub.pem")
provides=("${pkgname%-bin}")
conflicts=("${pkgname%-bin}" "${pkgname%-bin}-linux")
sha512sums=('925d85ddaaee784fea9142c996c5b590a2375922dba86b70a87d4a6b6515b1ac9d1d432624fd98775cfc521d4bcf24c71532a8a0d2f77bf155f7a3804f460084'
'e34ce7a08613c7b45210e62e2922a349ad9202949b01cd8e35e12c0d0aebd30b4d5a451d62b57b3c844082717b91fe7e0e08d8f2c0705c75b93117d58dbb0099'
'7c6cf9f1074c08b4d38567ced95159c0809af025efe01b0163d9bb5107daabfa873064255186c071a7dc3a9177ccd0c1b2fcc8b085bdbff234965a6710b3ae45')
prepare() {
# Validate the signature against public key:
# https://tuta.com/support/#verify-desktop
openssl dgst -sha512 -verify tutao-pub-${pkgver}.pem -signature \
linux-sig-${pkgver}.bin "${pkgname%-bin}-$pkgver.AppImage"
chmod +x "${pkgname%-bin}-$pkgver.AppImage"
./"${pkgname%-bin}-$pkgver.AppImage" --appimage-extract
# Correct path for desktop file, remove unneeded desktop file keys
desktop-file-edit --set-key=Exec --set-value="/opt/${pkgname%-bin}/${pkgname%-bin}" \
--remove-key="X-AppImage-Version" \
--remove-key="X-Desktop-File-Install-Version" \
"squashfs-root/${pkgname%-bin}.desktop"
}
package() {
find squashfs-root/{locales,resources,usr/share/icons}/ -type d -exec chmod 755 {} +
install -d "$pkgdir/opt/${pkgname%-bin}/"
cp -av squashfs-root/* "$pkgdir/opt/${pkgname%-bin}/"
chmod 4755 "$pkgdir/opt/${pkgname%-bin}/chrome-sandbox"
rm -rf "$pkgdir/opt/${pkgname%-bin}/usr/"
rm "$pkgdir/opt/${pkgname%-bin}"/{"${pkgname%-bin}".desktop,AppRun}
# Fix permisssions
chmod 644 "$pkgdir/opt/${pkgname%-bin}"/resources/app{.asar,-update.yml}
install -d "$pkgdir/usr/bin"
ln -s "/opt/${pkgname%-bin}/${pkgname%-bin}" "$pkgdir/usr/bin/"
install -Dm644 "squashfs-root/${pkgname%-bin}.desktop" -t \
"$pkgdir/usr/share/applications/"
install -d "$pkgdir/usr/share/icons/"
cp -r squashfs-root/usr/share/icons/hicolor/ "$pkgdir/usr/share/icons/"
}
|