-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathorg.lbry.daemon.json
More file actions
56 lines (56 loc) · 1.63 KB
/
org.lbry.daemon.json
File metadata and controls
56 lines (56 loc) · 1.63 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
{
"id": "org.lbry.daemon",
"runtime": "org.freedesktop.Platform",
"runtime-version": "24.08",
"sdk": "org.freedesktop.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.golang"
],
"build-options": {
"append-path": "/usr/lib/sdk/golang/bin"
},
"command": "lbryd",
"finish-args": [
"--share=network"
],
"cleanup": [
"/go"
],
"modules": [
{
"name": "lbryd",
"buildsystem": "simple",
"build-commands": [
"go build -mod=vendor -o lbryd",
"install -Dm00755 lbryd $FLATPAK_DEST/bin/lbryd",
"install -Dm00644 $FLATPAK_ID.metainfo.xml $FLATPAK_DEST/share/metainfo/$FLATPAK_ID.metainfo.xml",
"install -Dm00644 $FLATPAK_ID.appdata.xml $FLATPAK_DEST/share/appdata/$FLATPAK_ID.appdata.xml"
],
"sources": [
{
"path": ".",
"type": "dir"
},
{
"dest": "vendor",
"path": "modules.txt",
"type": "file"
},
{
"dest": "vendor/golang.org/x/crypto",
"sha256": "cbca45d1fcb0fa359cd232b884ba86cfa1a32644ff7efdeb79807db3eb0f005d",
"strip-components": 3,
"type": "archive",
"url": "https://proxy.golang.org/golang.org/x/crypto/@v/v0.49.0.zip"
},
{
"dest": "vendor/google.golang.org/protobuf",
"sha256": "14983d36c56a814ed91b6d652f2b8f895baba1b84eb43b28a0b132c8637cd274",
"strip-components": 2,
"type": "archive",
"url": "https://proxy.golang.org/google.golang.org/protobuf/@v/v1.36.11.zip"
}
]
}
]
}