blob: d2e6ff63b45626ccb9ad74724f4f2927fe3bc771 (
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
|
# Maintainer: Elia Nitsche <nitscheelia at gmail dot com>
pkgname="quantframe-git"
_pkgname=${pkgname%-git}
pkgver=1.6.19.r0.ge1b708a
pkgrel=1
pkgdesc="algorithmic trading program for Warframe"
arch=("x86_64")
url="https://github.com/Kenya-DK/quantframe-react"
license=("custom:MIT-modified")
depends=(
'webkit2gtk-4.1' # tauri runtime
'appmenu-gtk-module' # global menu support
'libappindicator-gtk3' # tray support
# already pulled in by 'webkit2gtk-4.1'
#'gtk3' 'glib2' 'openssl' 'librsvg'
# seems to be not needed even though it is in the tauri prerequisites
#'wget' 'curl' 'xdotool'
)
makedepends=('git' 'nodejs' 'pnpm' 'rust' 'cargo' 'jq')
optdepends=()
options=(!lto) # fix linking error (coming from ring)
provides=(${_pkgname})
conflicts=(${_pkgname})
source=("${pkgname}::git+${url}")
sha512sums=("SKIP")
pkgver() {
cd "${pkgname}"
git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "${pkgname}"
# disable the updater (does not work)
#jq 'del(.plugins.updater)' src-tauri/tauri.conf.json > tmp.json
#mv tmp.json src-tauri/tauri.conf.json
# remove pubkey
jq '.plugins.updater.pubkey = ""' src-tauri/tauri.conf.json > tmp.json
mv tmp.json src-tauri/tauri.conf.json
# deactivate other build targets
jq '.bundle.active = false' src-tauri/tauri.conf.json > tmp.json
mv tmp.json src-tauri/tauri.conf.json
}
build() {
cd "${pkgname}"
pnpm install
pnpm tauri build
}
package() {
cd "${pkgname}"
outputDir="./src-tauri/target/release"
iconsDir="src-tauri/icons"
#install -Dm755 "./src-tauri/target/release/Quantframe" "${pkgdir}/usr/lib/quantframe/Quantframe"
#install -Dm755 ${srcdir} "${pkgdir}/usr/bin/${_pkgname}"
install -Dm755 "${outputDir}/Quantframe" "${pkgdir}/usr/bin/${_pkgname}"
# copy resources
mkdir -p "${pkgdir}/usr/lib/${_pkgname}/"
cp -r "${outputDir}/resources" "${pkgdir}/usr/lib/${_pkgname}/"
# icons
install -Dm644 "${iconsDir}/32x32.png" "$pkgdir/usr/share/icons/hicolor/32x32/apps/$pkgname.png"
install -Dm644 "${iconsDir}/128x128.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/$pkgname.png"
install -Dm644 "${iconsDir}/128x128@2x.png" "$pkgdir/usr/share/icons/hicolor/256x256@2/apps/$pkgname.png"
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
}
# On wayland you might need the following flags to run the app:
# WEBKIT_DISABLE_DMABUF_RENDERER=1 quantframe
# WEBKIT_DISABLE_DMABUF_RENDERER=1 GDK_BACKEND=x11 quantframe
|