blob: 3e218858ec5bfb097a59b966aabe373044f3648a (
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
|
# Maintainer: Vianney Bouchaud <aur dot vianney at bouchaud dot org>
pkgname=bruno-git
_pkgname=bruno
pkgdesc="Opensource API Client for Exploring and Testing APIs"
pkgver=1.34.2.r2.g40001949
pkgrel=1
arch=('x86_64')
url="https://www.usebruno.com/"
license=('MIT')
provides=('bruno')
conflicts=('bruno')
_electron=electron31
depends=(
"${_electron}"
'alsa-lib'
)
makedepends=(
'nvm'
'asar'
'python-setuptools'
'python'
)
pkgver() {
cd "$srcdir/$_pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
source=(
"$_pkgname::git+https://github.com/usebruno/bruno#branch=main"
com.usebruno.app.Bruno.desktop
)
sha256sums=(
'SKIP'
'7bad0d66e67fdaaf99d1b7b32ba2f119b7d6dba12ecfdb398c39ee3c81bbe051'
)
_ensure_local_nvm() {
# lets be sure we are starting clean
which nvm >/dev/null 2>&1 && nvm deactivate && nvm unload
export NVM_DIR="${srcdir}/${_pkgname}/.nvm"
# The init script returns 3 if version
# specified in ./.nvrc is not (yet) installed in $NVM_DIR
# but nvm itself still gets loaded ok
source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
}
prepare() {
_ensure_local_nvm
cd "${_pkgname}"
nvm install
# disabling husky however I can since I'm not in a git repository
sed -i -e 's/"husky":.*//g' -e 's/"husky install"/"true"/g' package.json
npm install --cache "${srcdir}/npm-cache"
npm install electron-builder --save-dev --cache "${srcdir}/npm-cache"
npm install node-addon-api --save-dev --cache "${srcdir}/npm-cache"
}
build() {
_ensure_local_nvm
export NODE_ENV=production
export NODE_OPTIONS=--openssl-legacy-provider
cd "${_pkgname}"
npm run build:graphql-docs
npm run build:bruno-query
npm run build:bruno-common
npm run sandbox:bundle-libraries --workspace=packages/bruno-js
npm run build:web
electronDist="/usr/lib/${_electron}"
electronVer="$(cat ${electronDist}/version)"
sed -i -e "s~\"dist:linux\":.*~\"dist:linux\": \"electron-builder --linux --x64 --dir --config electron-builder-config.js -c.electronDist=${electronDist} -c.electronVersion=${electronVer}\",~g" packages/bruno-electron/package.json
npm run build:electron:linux
}
package() {
install -Dm0644 com.usebruno.app.Bruno.desktop -t "${pkgdir}/usr/share/applications/"
cd "${_pkgname}"
install -Dm0755 /dev/null "${pkgdir}/usr/bin/${_pkgname}"
cat >> "${pkgdir}/usr/bin/${_pkgname}" <<EOD
#! /usr/bin/sh
ELECTRON_IS_DEV=0 exec ${_electron} /usr/lib/bruno "\$@"
EOD
install -Dm0644 license.md "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
install -d "${pkgdir}/usr/lib/${_pkgname}/"
asar e packages/bruno-electron/out/linux-unpacked/resources/app.asar "${pkgdir}/usr/lib/${_pkgname}/"
for i in 16 24 48 64 128 256 512 1024; do
install -Dm644 "packages/bruno-electron/resources/icons/png/${i}x${i}.png" "${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps/com.usebruno.app.Bruno.png"
done
}
|