mirror of
https://github.com/quexten/goldwarden.git
synced 2025-01-10 18:12:35 +01:00
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
id: com.quexten.Goldwarden
|
|
runtime: org.gnome.Platform
|
|
runtime-version: '45'
|
|
sdk: org.gnome.Sdk
|
|
command: main.py
|
|
finish-args:
|
|
- --share=ipc
|
|
- --share=network
|
|
- --socket=wayland
|
|
- --socket=fallback-x11
|
|
- --device=dri
|
|
# - --filesystem=home
|
|
- --filesystem=host
|
|
# polkit & locking.. should filter this later on
|
|
- --socket=session-bus
|
|
- --socket=system-bus
|
|
modules:
|
|
- name: goldwarden
|
|
buildsystem: simple
|
|
build-options:
|
|
build-args:
|
|
- "--share=network"
|
|
build-commands:
|
|
- pip3 install --prefix=/app tendo
|
|
- git clone https://github.com/bugaevc/wl-clipboard.git
|
|
- cd wl-clipboard && meson setup build && cd build && ninja
|
|
- install -D wl-clipboard/build/src/wl-copy /app/bin/wl-copy
|
|
- install -D main.py /app/bin/main.py
|
|
- install -D com.quexten.Goldwarden.desktop /app/share/applications/com.quexten.Goldwarden.desktop
|
|
- install -D goldwarden.svg /app/share/icons/hicolor/scalable/apps/com.quexten.Goldwarden.svg
|
|
- cp -R ./ /app/bin/
|
|
sources:
|
|
- type: dir
|
|
path: ui |