blob: 69f72c8af62001fc5fbcf6083a52b9da8838e985 (
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
|
# Maintainer: Danilo <aur ät dbrgn döt ch>
pkgname=threema-desktop
_binname=threema
_variant=consumer
_appname="Threema"
pkgdesc="Threema Desktop (Threema Web in Electron)."
pkgver=1.2.46
pkgrel=2
_threema_web_ver=2.5.7 # Keep in sync with version used by threema-desktop
arch=('any')
url="https://github.com/threema-ch/threema-web-electron"
license=('AGPL')
depends=(electron32)
makedepends=(npm nodejs-lts-iron git)
source=(
"threema-web-electron-v${pkgver}-${pkgrel}.tar.gz::https://github.com/threema-ch/threema-web-electron/archive/refs/tags/${pkgver}.tar.gz"
"threema-web-v${_threema_web_ver}.tar.gz::https://github.com/threema-ch/threema-web/archive/refs/tags/v${_threema_web_ver}.tar.gz"
"threema.desktop"
)
sha256sums=(
'73b097501cf8a6fd94beb48245972ef71c8510d916ea412b199c8bc57e6ca1d8'
'bd28449a35c144b49c34a16f23d6de1638660017c8a3f4e87b34ea7b341c7230'
'9fed7fdd6f9b6e4b53caafc9ef8608b7bd73c1272ab4380d5d6839c3c60deb8b'
)
prepare() {
cd "${srcdir}/threema-web-${_threema_web_ver}"
}
build() {
cd "${srcdir}/threema-web-electron-${pkgver}/"
# Copy threema-web source code (since threema-web-electron submodule
# is not contained in GitHub export)
rm -r "app/dependencies/threema-web"
cp -R "../threema-web-${_threema_web_ver}" "app/dependencies/threema-web"
# Build Threema Web
export DEV_ENV=production
export THREEMA_WEB_VERSION=threema-web-${_threema_web_ver}
npm install
./tools/patches/patch-threema-web.sh
npm run app:build:web
./tools/patches/post-patch-threema-web.sh
touch app/dependencies/threema-web/release/threema-web-${_threema_web_ver}/userconfig.overrides.js
# Build Electron app
npm run app:install
_target_os=linux-deb
_target_dist=linux:deb
node tools/patches/post-patch-threema-web.js $_target_os $_variant
if [ "$_variant" = "blue" ]; then node tools/patches/blue-patch-threema-web.js; fi
npm run electron:dist:$_target_dist:$_variant
}
package() {
cd "${srcdir}/"
_app_root="${srcdir}/threema-web-electron-${pkgver}"
# Copy application
mkdir -p "${pkgdir}/usr/lib/${pkgname}/resources/"
cp "${_app_root}/app/build/dist-electron/packaged/${_appname}-linux-x64/resources/app.asar" \
"${pkgdir}/usr/lib/${pkgname}/resources/"
# Create launcher
mkdir -p "${pkgdir}/usr/bin/"
_launcher="${pkgdir}/usr/bin/${_binname}"
echo -e "#!/bin/sh\nexec electron32 '/usr/lib/${pkgname}/resources/app.asar' '$@'" > "$_launcher"
chmod +x "$_launcher"
# Copy desktop files
mkdir -p "${pkgdir}/usr/share/applications"
mkdir -p "${pkgdir}/usr/share/pixmaps"
cp "${_app_root}/app/assets/icons/png/${_variant}-512x512.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
cp "${srcdir}/threema.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
sed -i -s "s/{{appname}}/${_appname}/" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
sed -i -s "s/{{binname}}/${_binname}/" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
sed -i -s "s/{{pkgname}}/${pkgname}/" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
sed -i -s "s/{{pkgdesc}}/${pkgdesc}/" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
}
# vim:set ts=2 sw=2 et:
|