blob: 89c2328240eca50a3c9f59d605c7e621a3954c3d (
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
|
# Maintainer: Asuka Minato <i at asukaminato dot eu dot org>
# Maintainer: Kid <hi at xuann dot wang>
# Contributor: Jaime Martínez Rincón <jaime@jamezrin.name>
pkgname=notion-app-electron
pkgver=3.12.0
pkgrel=1
pkgdesc='Your connected workspace for wiki, docs & projects'
arch=(x86_64)
url=https://www.notion.so/desktop
license=(custom)
depends=(
bash
gcc-libs
glibc
hicolor-icon-theme
electron31
)
makedepends=(
p7zip
asar
icoutils
)
install=.install
source=(
"https://desktop-release.notion-static.com/Notion%20Setup%20${pkgver}.exe"
https://github.com/WiseLibs/better-sqlite3/releases/download/v11.1.2/better-sqlite3-v11.1.2-electron-v125-linux-x64.tar.gz
notion-app
notion.desktop
)
sha256sums=('46113e15236efc29e3234cf5d4a11433a27d88583ef1cce2abcb0d032f527f5e'
'0147267cf7b33c77e0e8eb51de7d6bd6e24dae0c717f4d1a80efe743e2ab541e'
'4cd74d662ea9095b9e662f2f10b426c322276c8565b22cbb6e2cca766b169219'
'19a5f973f1e9291081aa05512e07c61447e8c30e1a43dd22d0cc1090837d1e19')
prepare() {
# bsdtar can't recognize 3.2.1, so use 7z
7z x ./*.exe
rm ./*.exe
7z x ./**/app-64.7z
rm ./**/app-64.7z
asar e "$srcdir"/**/app.asar "$srcdir/unpacked"
icotool -x -w 256 "$srcdir/unpacked/icon.ico" -o "$srcdir/notion.png"
icotool -x -w 256 "$srcdir/resources/trayIcon.ico" -o "$srcdir/trayIcon.png"
sed -i -e 's/process.platform/"win32"/g
s/_.Store.getState().app.preferences?.isAutoUpdaterDisabled/(true)/g
s!extra-resources!/usr/share/notion-app!g
s/trayIcon.ico/trayIcon.png/g' "$srcdir/unpacked/.webpack/main/index.js"
find $srcdir \( -name "*.c" -or -name "*.h" -or -name "*.gyp" -or -name "*.gypi" -name "clang-format.js" -or -name "conversion.js" -or -name "eslint-format.js" \) -delete -printf "rm %p to make namcap happy.\n"
}
package() {
local usr="$pkgdir/usr"
local share="$usr/share"
local lib="$usr/lib/notion-app"
install -d "$lib"
cp -a "$srcdir/unpacked/"{package.json,node_modules,.webpack} "$lib"
install -Dm644 "$srcdir/build/Release/better_sqlite3.node" -t "$lib/node_modules/better-sqlite3/build/Release/"
install -Dm755 notion-app -t "$usr/bin"
install -Dm644 "$srcdir/notion.desktop" -t "$share/applications"
install -Dm644 "$srcdir/notion.png" -t "$share/icons/hicolor/256x256/apps"
install -Dm644 "$srcdir/trayIcon.png" -t "$share/notion-app"
find "$pkgdir" -type d -empty -delete
}
|