blob: a35aaf7a18517e5eefcbb9f8a83b94f0d6d15aab (
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
|
# Maintainer: Anna <morganamilo@gmail.com>
pkgname=superproductivity-git
_pkgname=superproductivity
_reponame=super-productivity
pkgver=6.4.0.r10.g0cfb7af2e
pkgrel=1
pkgdesc='To Do List / Time Tracker with Jira Integration.'
arch=('x86_64')
url="http://super-productivity.com/"
license=('MIT')
depends=('alsa-lib' 'gtk3' 'gconf' 'libxss' 'libxtst' 'nss' 'nspr'
'xdg-utils' 'xprintidle' 'libnotify' 'libappindicator-gtk3' 'electron>=10')
makedepends=('git' 'npm' 'yarn' 'python')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("${_reponame}::git+https://github.com/johannesjo/${_reponame}"
"${_pkgname}.desktop"
"${_pkgname}.sh")
md5sums=('SKIP'
'2497ef16691da7fe4dc3c9d6ce6a8bcf'
'6532676c1c13ae77f24205b3e3e97db9')
pkgver() {
cd ${srcdir}/${_reponame}
git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "${srcdir}/${_reponame}"
electronVer=$(electron --version | tail -c +2)
# Nodejs script for package version replacement
replacement=$(cat <<-END
d = JSON.parse(fs.readFileSync('package.json'));
d.devDependencies.electron = "$electronVer";
fs.writeFileSync('package.json', JSON.stringify(d, null, 2));
END
)
# Change electron version to the one in the system
node -e "${replacement}"
# Edit electron builder config so only the linux-unpacked package is built
sed -i '/- AppImage/d' electron-builder.yaml
# Replacing deb with dir
sed -i 's/- deb/dir/' electron-builder.yaml
sed -i '/- snap/d' electron-builder.yaml
# No snap
sed -i '/snap/d' electron-builder.yaml
sed -i '/grade: stable/d' electron-builder.yaml
}
build() {
cd "${srcdir}/${_reponame}"
yarn --cache-folder "${srcdir}/yarn-cache"
# Better configuration for npm cache and calling installed binaries
export npm_config_cache="${srcdir}/npm_cache"
# use system electron version
# see: https://wiki.archlinux.org/index.php/Electron_package_guidelines
electronDist=$(dirname $(realpath $(which electron)))
electronVer=$(electron --version | tail -c +2)
# Building angular and electron-builder
yarn buildFrontend:prod && yarn electron:build
# Building the app
npx electron-builder --linux dir --x64 --dir \
-c.electronDist="${electronDist}" -c.electronVersion="${electronVer}"
}
package() {
cd "${srcdir}"
# Install asar file
install -Dm644 "${_reponame}/app-builds/linux-unpacked/resources/app.asar" \
"${pkgdir}/usr/lib/${_pkgname}/resources/app.asar"
# Install start script
install -Dm755 "${_pkgname}.sh" "${pkgdir}/usr/bin/${_pkgname}"
# Install shortcut
install -Dm644 "${_pkgname}.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
# Installing icons
for size in 16 32 48 128 256 512; do
icon_file="${_reponame}/build/icons/${size}x${size}.png"
if [ -n "$icon_file" ]; then
install -Dm644 "${icon_file}" "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/${_pkgname}.png"
fi
done
# Copying Licence
install -Dm644 "${_reponame}/LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
}
|