-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
org.flatpak.paranoya.json
46 lines (46 loc) · 1.22 KB
/
org.flatpak.paranoya.json
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
{
"id": "org.flatpak.paranoya",
"runtime": "org.freedesktop.Platform",
"runtime-version": "23.08",
"sdk": "org.freedesktop.Sdk",
"command": "paranoya.sh",
"finish-args": [
"--share=network",
"--filesystem=host"
],
"modules": [
"python3-requirements.json",
{
"name": "paranoya",
"buildsystem": "simple",
"build-options": {
"build-args": [ "--share=network" ]
},
"build-commands": [
"./upgrader.py --sigsonly",
"mv * /app/bin/"
],
"sources": [
{
"type": "git",
"path": "paranoya",
"branch": "main",
"url": "https://github.com/c0m4r/paranoya.git"
}
]
},
{
"name": "paranoya-wrapper",
"buildsystem": "simple",
"build-commands": [
"install -D paranoya.sh /app/bin/paranoya.sh"
],
"sources": [
{
"type": "file",
"path": "paranoya.sh"
}
]
}
]
}