-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnfpm.yaml
More file actions
81 lines (70 loc) · 1.67 KB
/
Copy pathnfpm.yaml
File metadata and controls
81 lines (70 loc) · 1.67 KB
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
name: "pwar"
arch: "amd64"
platform: "linux"
version: "v0.1.0"
section: "sound"
priority: "optional"
maintainer: "ripxorip@gmail.com"
description: "PipeWire ASIO Relay - Zero-drift, real-time audio bridge"
vendor: "PWAR Project"
homepage: "https://github.com/ripxorip/PWAR"
license: "GPL-3.0-or-later"
depends:
- libpipewire-0.3-0
- qtbase5-dev
- qtdeclarative5-dev
- qml-module-qtquick2
- qml-module-qtquick-controls2
- qml-module-qtquick-layouts
- qml-module-qtgraphicaleffects
recommends:
- pipewire
- pipewire-pulse
contents:
# Binaries
- src: "./build/linux/pwar_cli"
dst: "/usr/bin/pwar_cli"
file_info:
mode: 0755
- src: "./build/linux/pwar_gui"
dst: "/usr/bin/pwar_gui"
file_info:
mode: 0755
- src: "./build/linux/libpwar.so"
dst: "/usr/lib/libpwar.so"
file_info:
mode: 0644
# QML files
- src: "./linux/pwar_gui.qml"
dst: "/usr/share/pwar/pwar_gui.qml"
file_info:
mode: 0644
# Desktop file
- src: "./linux/pwar.desktop"
dst: "/usr/share/applications/pwar.desktop"
file_info:
mode: 0644
# Icon
- src: "./media/pwar_icon_256x256.png"
dst: "/usr/share/icons/hicolor/256x256/apps/pwar.png"
file_info:
mode: 0644
scripts:
postinstall: ./scripts/postinstall.sh
preremove: ./scripts/preremove.sh
overrides:
deb:
depends:
- libpipewire-0.3-0
- qtbase5-dev
- qtdeclarative5-dev
- qml-module-qtquick2
- qml-module-qtquick-controls2
- qml-module-qtquick-layouts
- qml-module-qtgraphicaleffects
rpm:
depends:
- pipewire-devel
- qt5-qtbase
- qt5-qtdeclarative
- qt5-qtquickcontrols2