-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcom.stremio.Service.json
57 lines (57 loc) · 2.35 KB
/
com.stremio.Service.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
47
48
49
50
51
52
53
54
55
56
57
{
"app-id": "com.stremio.Service",
"runtime": "org.gnome.Platform",
"runtime-version": "46",
"sdk": "org.gnome.Sdk",
"sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"],
"command": "stremio-service",
"finish-args": [
"--share=network",
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri",
"--talk-name=org.kde.StatusNotifierWatcher"
],
"build-options": {
"append-path": "/usr/lib/sdk/rust-stable/bin"
},
"modules": [{
"name": "service",
"buildsystem": "simple",
"build-options": {
"env": {
"CARGO_HOME": "/run/build/service/cargo"
}
},
"build-commands": [
"cargo --offline fetch --manifest-path Cargo.toml --verbose",
"cargo --offline build --release --features=bundled,offline-build --verbose"
],
"post-install": [
"install -Dm755 ./flatpak/stremio-service -t /app/bin/",
"install -Dm755 server.js -t /app/share/stremio-service/",
"install -Dm755 ./target/release/stremio-service -t /app/share/stremio-service/",
"install -Dm755 ./resources/bin/linux/stremio-runtime -t /app/share/stremio-service/",
"install -Dm755 ./resources/bin/linux/ffmpeg -t /app/share/stremio-service/",
"install -Dm755 ./resources/bin/linux/ffprobe -t /app/share/stremio-service/",
"install -Dm644 ./LICENSE.md -t /app/share/stremio-service/",
"install -Dm644 ./flatpak/com.stremio.Service.desktop /app/share/applications/com.stremio.Service.desktop",
"install -Dm644 ./resources/com.stremio.service.metainfo.xml /app/share/metainfo/com.stremio.Service.metainfo.xml",
"install -Dm644 ./resources/com.stremio.service.svg /app/share/icons/hicolor/scalable/apps/com.stremio.Service.svg"
],
"sources": [
{
"type": "git",
"url": "https://github.com/Stremio/stremio-service.git",
"tag": "v0.1.13",
"commit": "512f93126933f96c38e3f99dd263b6566004a3a9"
},
"./cargo-sources.json",
"./server-source.json"
],
"modules": [
"./shared-modules/libappindicator/libappindicator-gtk3-12.10.json"
]
}]
}