mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-02 23:01:19 +00:00
60 lines
2.0 KiB
JSON
60 lines
2.0 KiB
JSON
{
|
|
"version": "1.24.3",
|
|
"description": "A painless self-hosted Git service",
|
|
"homepage": "https://gitea.io/",
|
|
"license": "MIT",
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://dl.gitea.com/gitea/1.24.3/gitea-1.24.3-windows-4.0-amd64.exe.xz",
|
|
"hash": "b69ca56af35c637d992424881a34380e2d10c9d6813753f196ac7cc41338981c"
|
|
},
|
|
"32bit": {
|
|
"url": "https://dl.gitea.com/gitea/1.24.3/gitea-1.24.3-windows-4.0-386.exe.xz",
|
|
"hash": "ea83ed1118915dbc40e8e6c856c25284e2e81cc509625df6fb16d932d26abb7e"
|
|
}
|
|
},
|
|
"installer": {
|
|
"script": [
|
|
"Get-Item \"$dir\\gitea*.exe\" | Rename-Item -NewName 'gitea.exe'",
|
|
"if (!(Test-Path \"$persist_dir\\custom\\conf\")) {",
|
|
" New-Item \"$persist_dir\\custom\\conf\" -ItemType Directory | Out-Null",
|
|
"}",
|
|
"if (!(Test-Path \"$persist_dir\\custom\\conf\\app.ini\")) {",
|
|
" @(",
|
|
" '[database]'",
|
|
" 'DB_TYPE = sqlite3'",
|
|
" \"PATH = $persist_dir/data/gitea.db\"",
|
|
" '[repository]'",
|
|
" \"ROOT = $persist_dir/repositories\"",
|
|
" '[log]'",
|
|
" \"ROOT_PATH = $persist_dir/log\"",
|
|
" ) -replace '\\\\', '/' | Set-Content \"$persist_dir\\custom\\conf\\app.ini\" -Encoding ASCII",
|
|
"}"
|
|
]
|
|
},
|
|
"bin": "gitea.exe",
|
|
"persist": [
|
|
"custom",
|
|
"repositories",
|
|
"log",
|
|
"data"
|
|
],
|
|
"checkver": {
|
|
"url": "https://dl.gitea.com/gitea/version.json",
|
|
"jsonpath": "$.latest.version"
|
|
},
|
|
"autoupdate": {
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://dl.gitea.com/gitea/$version/gitea-$version-windows-4.0-amd64.exe.xz"
|
|
},
|
|
"32bit": {
|
|
"url": "https://dl.gitea.com/gitea/$version/gitea-$version-windows-4.0-386.exe.xz"
|
|
}
|
|
},
|
|
"hash": {
|
|
"url": "$url.sha256"
|
|
}
|
|
}
|
|
}
|