blob: 7827932c498a75792767325dbfd91c944e986463 (
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
121
122
123
124
|
# Maintainer:
# Contributor: Brad Johnson <bradsk88@gmail.com>
: ${_electron_dist:=/usr/lib/electron}
: ${_install_path:=usr/share}
_pkgname="gitify"
pkgname="$_pkgname-git"
pkgver=6.0.0.r1.g43e7faf
pkgrel=1
pkgdesc="GitHub tray icon and notifications"
url="https://github.com/gitify-app/gitify"
license=('MIT')
arch=("any")
depends=(
'electron'
)
makedepends=(
'git'
'libicns'
'nvm' # AUR
)
provides=("$_pkgname")
conflicts=(
"$_pkgname"
'gitify-bin'
)
_pkgsrc="$_pkgname"
source=("git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 \
| sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
}
prepare() {
icns2png -x "$_pkgsrc/assets/images/app-icon.icns"
mv app-icon_512x512x32.png "$_pkgname.png"
local _electron_version="$(cat $_electron_dist/version)"
sed -E -e 's#("electron"): "[^"]+",#\1: "'${_electron_version}'",#' \
-i "$_pkgsrc/package.json"
}
_nvm_env() {
# avoid cluttering user home
export HOME="$srcdir/node-home"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export NVM_DIR="$srcdir/node-nvm"
export NODE_ENV=production
_nodeversion=$(cat "$_pkgsrc/.nvmrc")
# set up nvm
source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
nvm install $_nodeversion
nvm use $_nodeversion
}
build() (
_nvm_env
cd "$_pkgsrc"
npm install -g pnpm
NODE_ENV=development pnpm install --ignore-scripts
pnpm run build
pnpm run prepare:remove-source-maps
pnpm -c exec "electron-builder --linux dir --publish never -c.electronDist=${_electron_dist} -c.electronVersion=$(cat $_electron_dist/version)"
)
package() {
install -Dm644 "$_pkgsrc/dist/linux-unpacked/resources/app.asar" -t "$pkgdir/$_install_path/$_pkgname/"
install -Dm644 "$_pkgname.png" -t "$pkgdir/$_install_path/pixmaps/"
install -Dm644 "$_pkgsrc/LICENSE" -t "$pkgdir/$_install_path/licenses/$pkgname/"
install -Dm755 /dev/stdin "$pkgdir/$_install_path/applications/$_pkgname.desktop" << END
[Desktop Entry]
Type=Application
Name=${_pkgname^}
Comment=$pkgdesc
Exec=$_pkgname %U
Icon=$_pkgname
Terminal=false
StartupWMClass=${_pkgname^}
Categories=Development;
END
install -Dm755 /dev/stdin "$pkgdir/usr/bin/$_pkgname" << END
#!/usr/bin/env bash
name=$_pkgname
flags_file="\${XDG_CONFIG_HOME:-\$HOME/.config}/\${name}-flags.conf"
lines=()
if [[ -f "\${flags_file}" ]]; then
mapfile -t lines < "\${flags_file}"
fi
flags=()
for line in "\${lines[@]}"; do
if [[ ! "\${line}" =~ ^[[:space:]]*#.* ]] && [[ -n "\${line}" ]]; then
flags+=("\${line}")
fi
done
: \${ELECTRON_IS_DEV:=0}
export ELECTRON_IS_DEV
: \${ELECTRON_FORCE_IS_PACKAGED:=true}
export ELECTRON_FORCE_IS_PACKAGED
exec electron "/$_install_path/\${name}/app.asar" "\${flags[@]}" "\$@"
END
}
|