50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
id: com.quexten.Goldwarden
|
|
runtime: org.gnome.Platform
|
|
runtime-version: '45'
|
|
sdk: org.gnome.Sdk
|
|
command: goldwarden_ui_main.py
|
|
finish-args:
|
|
# Allow network access for sync
|
|
- --share=network
|
|
|
|
# GUI
|
|
- --share=ipc
|
|
- --socket=wayland
|
|
- --socket=fallback-x11
|
|
- --device=dri
|
|
|
|
# Lock on screensave
|
|
- --talk-name=org.gnome.ScreenSaver
|
|
- --talk-name=org.freedesktop.ScreenSaver
|
|
|
|
# Lock on idle
|
|
- --talk-name=org.gnome.Mutter.IdleMonitor
|
|
|
|
# Notifications
|
|
- --talk-name=org.freedesktop.Notifications
|
|
|
|
# pinentry & approval
|
|
- --talk-name=org.gnome.keyring.SystemPrompter
|
|
# biometric / user password auth
|
|
- --system-talk-name=org.freedesktop.PolicyKit1
|
|
modules:
|
|
- ./gui/python3-requirements.json
|
|
- name: goldwarden-python-ui
|
|
buildsystem: simple
|
|
build-commands:
|
|
- mkdir -p /app/bin
|
|
- cp -R ./gui/* /app/bin
|
|
- chmod +x /app/bin/goldwarden_ui_main.py
|
|
- install -D ./gui/com.quexten.Goldwarden.desktop /app/share/applications/com.quexten.Goldwarden.desktop
|
|
- install -D ./gui/goldwarden.svg /app/share/icons/hicolor/scalable/apps/com.quexten.Goldwarden.svg
|
|
- install -Dm644 ./gui/com.quexten.Goldwarden.metainfo.xml -t /app/share/metainfo/
|
|
sources:
|
|
- type: dir
|
|
path: ./
|
|
- name: goldwarden-core-daemon
|
|
buildsystem: simple
|
|
build-commands:
|
|
- install -D goldwarden /app/bin/goldwarden
|
|
sources:
|
|
- type: file
|
|
path: ./goldwarden |