blob: ee591aec9aae5e5469d9f599a6a58aaa892761bb (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
# Co-Maintainer: Aaron J. Graves <linux@ajgraves.com>
# Contributor: ganthern <https://github.com/ganthern>
pkgname=tutanota-desktop
pkgver=319.260107.1
pkgrel=1
_nodeversion=22
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=(
'cargo'
'emscripten'
'git'
'nvm'
'python'
'rust-wasm'
)
source=("git+https://github.com/tutao/tutanota.git#tag=$pkgname-release-$pkgver"
'git+https://github.com/P-H-C/phc-winner-argon2.git'
'git+https://github.com/open-quantum-safe/liboqs.git'
'git+https://github.com/tutao/Signal-FTS5-Extension.git'
"$pkgname.desktop")
sha256sums=('9ca921d8f4d9acea84bec336fe24931fd21bd40bce8448cf9b000fa1a1eeb9f1'
'SKIP'
'SKIP'
'SKIP'
'd6fef99f41fe18008e44b5930aee26dc2f79ef753d770cbdb946d9e17ac9b7d7')
_ensure_local_nvm() {
# let's be sure we are starting clean
which nvm >/dev/null 2>&1 && nvm deactivate && nvm unload
export NVM_DIR="${srcdir}/.nvm"
# The init script returns 3 if version specified
# in ./.nvrc is not (yet) installed in $NVM_DIR
# but nvm itself still gets loaded ok
source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
}
prepare() {
cd "${pkgname%-*}"
git submodule init
git config submodule.libs/webassembly/phc-winner-argon2.url "$srcdir/phc-winner-argon2"
git config submodule.libs/webassembly/liboqs.url "$srcdir/liboqs"
git config submodule.libs/Signal-FTS5-Extension.url "$srcdir/Signal-FTS5-Extension"
git -c protocol.file.allow=always submodule update
export RUSTUP_TOOLCHAIN=stable
cargo fetch --target "$(rustc --print host-tuple)"
export npm_config_cache="$srcdir/npm_cache"
_ensure_local_nvm
nvm install "${_nodeversion}"
npm ci
}
build() {
cd "${pkgname%-*}"
CFLAGS+=" -ffat-lto-objects"
export npm_config_cache="$srcdir/npm_cache"
export RUSTUP_TOOLCHAIN=stable
_ensure_local_nvm
# Manually build sqlcipher extension to avoid build failure
pushd node_modules/@signalapp/sqlcipher/deps/extension
cargo build --release --target ${CARCH}-unknown-linux-gnu
popd
npm run build-packages
node desktop --custom-desktop-release --unpacked
}
package() {
cd "${pkgname%-*}"
install -d "$pkgdir/opt/$pkgname/"
cp -av artifacts/desktop/linux-unpacked/* "$pkgdir/opt/$pkgname/"
chmod 4755 "$pkgdir/opt/$pkgname/chrome-sandbox"
install -d "$pkgdir/usr/bin"
ln -s "/opt/$pkgname/$pkgname" "$pkgdir/usr/bin/"
for i in 64 512; do
install -Dm644 resources/desktop-icons/icon/${i}.png \
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/$pkgname.png"
done
install -Dm644 "$srcdir/$pkgname.desktop" -t "$pkgdir/usr/share/applications/"
}
|