mirror of
https://github.com/chenasraf/stimvisor.git
synced 2026-05-17 17:38:11 +00:00
70 lines
2.3 KiB
YAML
70 lines
2.3 KiB
YAML
id: dev.casraf.StimVisor
|
|
runtime: org.gnome.Platform
|
|
runtime-version: '3.38'
|
|
sdk: org.gnome.Sdk
|
|
command: stimvisor
|
|
|
|
finish-args:
|
|
- --share=ipc # Share IPC namespace with the host (necessary for X11).
|
|
- --socket=x11
|
|
- --socket=wayland
|
|
- --socket=fallback-x11
|
|
- --device=dri # OpenGL rendering support.
|
|
# - --talk-name=org.freedesktop.Notifications
|
|
- --filesystem=home
|
|
- --filesystem=host
|
|
- --share=network
|
|
# - --talk-name=org.kde.StatusNotifierWatcher
|
|
|
|
build-options:
|
|
build-args:
|
|
- --share=network
|
|
env:
|
|
- GOROOT=/app/sdk/golang
|
|
- GOBIN=/app/go/bin
|
|
- CGO_ENABLED=0
|
|
- NODEROOT=/app/sdk/node
|
|
|
|
modules:
|
|
- name: golang
|
|
buildsystem: simple
|
|
build-commands:
|
|
- mkdir -p $GOROOT
|
|
- mv $(pwd)/* $GOROOT
|
|
sources:
|
|
- type: archive
|
|
url: https://go.dev/dl/go1.22.1.linux-amd64.tar.gz
|
|
sha256: aab8e15785c997ae20f9c88422ee35d962c4562212bb0f879d052a35c8307c7f
|
|
- name: nodejs
|
|
buildsystem: simple
|
|
build-commands:
|
|
- mkdir -p $NODEROOT
|
|
- mv $(pwd)/* $NODEROOT
|
|
- PATH=$PATH:$NODEROOT/bin npm i -g pnpm
|
|
sources:
|
|
- type: archive
|
|
url: https://nodejs.org/dist/v21.7.1/node-v21.7.1-linux-x64.tar.xz
|
|
sha256: cb25d7a4aa57d15f280ce45cd72f95e9d2020702b7ca75c7fe632444f7c0452c
|
|
- name: wails
|
|
buildsystem: simple
|
|
build-commands:
|
|
- $GOROOT/bin/go install github.com/wailsapp/wails/v2/cmd/wails@latest
|
|
- name: stimvisor
|
|
buildsystem: simple
|
|
sources:
|
|
- type: dir
|
|
path: ../
|
|
build-commands:
|
|
- PATH=$PATH:$GOROOT/bin:$NODEROOT/bin:$GOBIN wails build -ldflags="-X main.Version=0.0.1 -X main.Build=$(date +%FT%T%z)"
|
|
- install -Dm755 build/bin/stimvisor $FLATPAK_DEST/bin/stimvisor
|
|
- desktop-file-edit --set-icon=$FLATPAK_ID flatpak/$FLATPAK_ID.desktop
|
|
- install -Dm644 build/appicon.svg /app/share/icons/hicolor/scalable/apps/$FLATPAK_ID.svg
|
|
- >
|
|
for size in {32,64,128,256}; do
|
|
rsvg-convert build/appicon.svg -w "$size" -h "$size" -a -f png -o "$size.png";
|
|
install -Dm644 "$size.png" "/app/share/icons/hicolor/${size}x${size}/apps/$FLATPAK_ID.png";
|
|
done
|
|
- install -Dm00644 flatpak/$FLATPAK_ID.desktop $FLATPAK_DEST/share/applications/$FLATPAK_ID.desktop
|
|
- install -Dm00644 flatpak/$FLATPAK_ID.appdata.xml $FLATPAK_DEST/share/appdata/$FLATPAK_ID.appdata.xml
|
|
|