blob: a4d14de6ee27606b2537fa5ca89865e12b671eb6 (
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
|
# Maintainer: Jean Lucas <jean@4ray.co>
pkgname=signal-desktop
_pkgname=Signal-Desktop
pkgver=1.29.3
pkgrel=1
pkgdesc='Electron application that links with Signal on mobile'
arch=(x86_64)
url=https://signal.org
license=(GPL3)
depends=(electron)
makedepends=(
yarn
git
python2
'nodejs>=12.4.0'
npm
python
)
provides=(signal)
replaces=(signal)
source=(
$pkgname-$pkgver.tar.gz::https://github.com/signalapp/$_pkgname/archive/v$pkgver.tar.gz
$pkgname.desktop
openssl-linking.patch
)
sha512sums=('99c7733f563b0a81061e6c12368d389ca4907c167c31a6b5c96d321d7c4e5f78a5abb83f8d64805d60b43dae4142e34d7d959e1904a604e5e8c7ba1c87326c2e'
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
'2c10d4cc6c0b9ca650e786c1e677f22619a78c93465f27fc4cf4831f1cfe771f3b9885a416e381a9e14c3aea5d88cb3545264046188db72d54b8567266811e51')
prepare() {
cd $_pkgname-$pkgver
# Fix SpellChecker build with imminent Node 13
# See https://github.com/atom/node-spellchecker/issues/127
sed -r 's#("spellchecker": ").*"#\1https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz"#' -i package.json
# Set system Electron version for ABI compatibility
sed -r 's#("electron": ").*"#\1'$(cat /usr/lib/electron/version)'"#' -i package.json
# Allow higher Node versions
sed 's#"node": "#&>=#' -i package.json
yarn install
# Have SQLCipher dynamically link from OpenSSL
# See https://github.com/signalapp/Signal-Desktop/issues/2634
patch -Np0 < ../openssl-linking.patch
}
build() {
cd $_pkgname-$pkgver
# Gruntfile expects Git commit information which we don't have in a tarball download
# See https://github.com/signalapp/Signal-Desktop/issues/2376
yarn generate exec:build-protobuf exec:transpile concat copy:deps sass
yarn build-release --dir
}
package() {
cd $_pkgname-$pkgver
install -d "$pkgdir"/usr/{lib,bin}
cp -a release/linux-unpacked/resources "$pkgdir"/usr/lib/$pkgname
cat << EOF > "$pkgdir"/usr/bin/$pkgname
#!/bin/sh
NODE_ENV=production electron /usr/lib/$pkgname/app.asar "\$@"
EOF
chmod +x "$pkgdir"/usr/bin/$pkgname
install -Dm 644 ../$pkgname.desktop -t "$pkgdir"/usr/share/applications
for i in 16 24 32 48 64 128 256 512 1024; do
install -Dm 644 build/icons/png/${i}x${i}.png \
"$pkgdir"/usr/share/icons/hicolor/${i}x${i}/apps/$pkgname.png
done
}
|