mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-01 14:21:19 +00:00
* forego: Deprecate manifest * mariadb: Fix checkver and update to 10.6.5 * redis: Move `redis5` to `redis` * Use JSONPath in mariadb Signed-off-by: Hsiao-nan Cheung <niheaven@gmail.com> * Fix whitespaces * trigger CI Co-authored-by: Rashil Gandhi <rashil2000@gmail.com>
81 lines
3.2 KiB
JSON
81 lines
3.2 KiB
JSON
{
|
|
"version": "10.6.5",
|
|
"description": "Community developed fork of MySQL server.",
|
|
"homepage": "https://mariadb.org",
|
|
"license": "GPL-2.0-only",
|
|
"notes": [
|
|
"Run 'mysqld --standalone' or 'mysqld --console' to start the Database,",
|
|
"or run following command as administrator to register MariaDB as a service. See: https://mariadb.com/kb/en/library/mysql_install_dbexe/",
|
|
"",
|
|
"mysql_install_db --service=MariaDB --password=NewRootPassword",
|
|
"",
|
|
"To stop and/or delete the Service run 'sc stop MariaDB' and 'sc delete MariaDB'."
|
|
],
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://downloads.mariadb.com/MariaDB/mariadb-10.6.5/winx64-packages/mariadb-10.6.5-winx64.zip",
|
|
"hash": "ca56070e4d099c412987f09b73755fe874b83f951facd0fa81b8f76463569a3b",
|
|
"extract_dir": "mariadb-10.6.5-winx64"
|
|
},
|
|
"32bit": {
|
|
"url": "https://downloads.mariadb.com/MariaDB/mariadb-10.6.5/win32-packages/mariadb-10.6.5-win32.zip",
|
|
"hash": "e1c9f7aa9c8d1eefceae837ed794a1d6fa596bb86b82024e5fd187b33030fa23",
|
|
"extract_dir": "mariadb-10.6.5-win32"
|
|
}
|
|
},
|
|
"post_install": [
|
|
"if (!(Test-Path \"$dir\\data\\my.ini\") -and !(Test-Path \"$dir\\data\\my.cnf\") -and !(Test-Path \"$dir\\data\\mysql\")) {",
|
|
" warn 'Initializing data directory ...'",
|
|
" Invoke-ExternalCommand -FilePath \"$dir\\bin\\mysql_install_db.exe\" -ArgumentList @(\"--datadir=`\"$dir\\data`\"\")",
|
|
" warn 'Database has been initialized (username: root, password: <blank>)'",
|
|
"}"
|
|
],
|
|
"bin": [
|
|
"bin\\aria_chk.exe",
|
|
"bin\\aria_dump_log.exe",
|
|
"bin\\aria_ftdump.exe",
|
|
"bin\\aria_pack.exe",
|
|
"bin\\aria_read_log.exe",
|
|
"bin\\innochecksum.exe",
|
|
"bin\\myisamchk.exe",
|
|
"bin\\myisamlog.exe",
|
|
"bin\\myisampack.exe",
|
|
"bin\\myisam_ftdump.exe",
|
|
"bin\\mysql.exe",
|
|
"bin\\mysqladmin.exe",
|
|
"bin\\mysqlbinlog.exe",
|
|
"bin\\mysqlcheck.exe",
|
|
"bin\\mysqld.exe",
|
|
"bin\\mysqldump.exe",
|
|
"bin\\mysqlimport.exe",
|
|
"bin\\mysqlshow.exe",
|
|
"bin\\mysqlslap.exe",
|
|
"bin\\mysql_install_db.exe",
|
|
"bin\\mysql_plugin.exe",
|
|
"bin\\mysql_tzinfo_to_sql.exe",
|
|
"bin\\mysql_upgrade.exe",
|
|
"bin\\mysql_upgrade_service.exe",
|
|
"bin\\my_print_defaults.exe"
|
|
],
|
|
"persist": "data",
|
|
"checkver": {
|
|
"url": "https://downloads.mariadb.org/rest-api/mariadb/all-releases/",
|
|
"jsonpath": "$.releases[?(@.status=='stable')].release_number"
|
|
},
|
|
"autoupdate": {
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://downloads.mariadb.com/MariaDB/mariadb-$version/winx64-packages/mariadb-$version-winx64.zip",
|
|
"extract_dir": "mariadb-$version-winx64"
|
|
},
|
|
"32bit": {
|
|
"url": "https://downloads.mariadb.com/MariaDB/mariadb-$version/win32-packages/mariadb-$version-win32.zip",
|
|
"extract_dir": "mariadb-$version-win32"
|
|
}
|
|
},
|
|
"hash": {
|
|
"url": "$baseurl/sha256sums.txt"
|
|
}
|
|
}
|
|
}
|