-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshipyard.json
More file actions
36 lines (36 loc) · 1008 Bytes
/
shipyard.json
File metadata and controls
36 lines (36 loc) · 1008 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/CorruptComputer/Shipyard/refs/heads/release/shipyard.schema.json",
"executable": "Beepsky",
"version": "0.0.1",
"author": "Nickolas Gupton",
"license": "MIT",
"repositoryUrl": "https://github.com/CorruptComputer/Beepsky",
"dotnet": {
"projectFile": "./Beepsky/Beepsky.csproj",
"framework": "net10.0",
"configuration": "Release",
"runtimes": [
"linux-x64"
],
"publish": []
},
"formats": [
{
"format": "rpm",
"packageName": "Beepsky",
"release": 1,
"provides": [],
"dependsOn": [
"dotnet-runtime-10.0",
"libsodium",
"libopusenc",
"yt-dlp",
"ffmpeg-free"
],
"installSystemdService": true,
"systemdServiceName": "beepsky.service",
"postInstallScript": "systemctl daemon-reload && systemctl enable --now beepsky.service || true",
"preUninstallScript": "systemctl disable --now beepsky.service || true"
}
]
}