blob: d8edf5e653b556f6d714377bc6fce9d881acf1b6 (
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# Maintainer: samsapti <sam at sapti dot me>
# Contributor: lsf
# Contributer: Sam Whited <sam@samwhited.com>
# Contributor: Roman Kupriyanov <mr.eshua@gmail.com>
pkgname=jitsi-meet-desktop
pkgver=2023.9.0
pkgrel=1
pkgdesc="Jitsi Meet desktop application"
arch=('x86_64' 'aarch64')
url="https://jitsi.org/jitsi-meet/"
license=('Apache')
conflicts=('jitsi-meet-electron-bin'
'jitsi-meet-electron')
replaces=('jitsi-meet-electron')
_electron_pkg="electron26"
depends=('gtk3'
'libxss'
'nss'
"${_electron_pkg}>=26")
makedepends=('coreutils'
'git'
'python'
'png++'
'libxtst'
'nvm')
options=(!strip)
source=("${pkgname}_${pkgver}.tar.gz::https://github.com/jitsi/jitsi-meet-electron/archive/v${pkgver}.tar.gz"
'no_targets.patch'
'jitsi-meet-desktop.desktop')
sha256sums=('6fcc829b89e91bba66d8185bc88d2fbe4bb734a885b97fa3c20965155ff04983'
'ed3a4d4c524611ba66c9f0e28d2da77cb2948c6785367d69b86aa4965dd6bb99'
'36a30a15613d53b2a01626a5551315c6970889ce3c2688bce71e26c3333081a4')
case "$CARCH" in
aarch64)
_electronbuilderarch='arm64'
_dist_path="linux-${_electronbuilderarch}-unpacked"
;;
*)
_electronbuilderarch='x64'
_dist_path="linux-unpacked"
;;
esac
prepare() {
cd jitsi-meet-electron-${pkgver}
export npm_config_cache="${srcdir}/npm_cache"
_ensure_local_nvm
nvm install
# remove all hardcoded (x64) electron-builder targets
# for some reason, it's not enough to explicitely specify the desired (dir)
# target when calling electron-builder..
patch -Np1 -i ${srcdir}/no_targets.patch
sed 's#git+ssh://git@github.com#git+https://github.com#g' -i package-lock.json
npm install
# npm audit fix
}
build() {
cd jitsi-meet-electron-${pkgver}
export npm_config_cache="${srcdir}/npm_cache"
_ensure_local_nvm
nvm install
_electron_dist=/usr/lib/${_electron_pkg}
_electron_ver=$(cat ${_electron_dist}/version)
# npm run build
# no npx anymore, see https://github.com/electron-userland/electron-builder/issues/6411
npm exec -c 'webpack --config ./webpack.main.js --mode production'
npm exec -c 'webpack --config ./webpack.renderer.js --mode production'
# npx electron-builder --linux --${_electronbuilderrarch} --dir dist -c.electronDist=${_electron_dist} -c.electronVersion=${_electron_ver}
npm exec -c "electron-builder --linux --${_electronbuilderrarch} --dir dist -c.electronDist=${_electron_dist} -c.electronVersion=${_electron_ver}"
}
package() {
cd jitsi-meet-electron-${pkgver}/
install -d "${pkgdir}/usr/bin"
install -d "${pkgdir}/opt/${pkgname}"
cp -r "${srcdir}/jitsi-meet-electron-${pkgver}/dist/${_dist_path}"/resources/* "${pkgdir}/opt/${pkgname}"
install -Dm644 -- resources/icon.png "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
cat << EOF > "$pkgdir/usr/bin/$pkgname"
#!/bin/sh
NODE_ENV=production ELECTRON_IS_DEV=false exec $_electron_pkg /opt/$pkgname/app.asar "\$@"
EOF
chmod +x "$pkgdir"/usr/bin/$pkgname
install -Dm644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
# # https://wiki.archlinux.org/title/Node.js_package_guidelines#Package_contains_reference_to_$srcdir/$pkgdir
# find "$pkgdir" -name package.json -print0 | xargs -r -0 sed -i '/_where/d'
# local tmppackage="$(mktemp)"
# local pkgjson="$pkgdir/usr/lib/node_modules/$pkgname/package.json"
# jq '.|=with_entries(select(.key|test("_.+")|not))' "$pkgjson" > "$tmppackage"
# mv "$tmppackage" "$pkgjson"
# chmod 644 "$pkgjson"
}
# https://wiki.archlinux.org/title/Node.js_package_guidelines#Using_nvm
_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 ./.nvmrc is not (yet) installed in $NVM_DIR
# but nvm itself still gets loaded ok
source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
}
|