mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-07 01:01:22 +00:00
* add more version substitutions for urls (e.g. used for 7zip) * 7zip add autoupdate * update exlixr 1.4.0 and add autoupdate * update erlang 19.2 and add autoupdate * update ffmpeg 20170110 and add autoupdate * update flow 0.37.4 and add autoupdate * forge add autoupdate * update grails 3.2.4 and add autoupdate * update groovy 2.4.7 and add autoupdate * fix haskell url * update haxe 3.4.0-rc.2 and add autoupdate * hub add autoupdate * update hugo 0.18.1 and add autoupdate * update latex 2.9.6161 and add autoupdate * update lessmsi 1.5.1 and add autoupdate * update llvm 3.9.1 and add autoupdate * update mysql 5.7.17 and add autoupdate * fix nginx urls * nuget add autoupdate * nvm add autoupdate * update octave 4.2.0 and add autoupdate * update pester 3.4.3 and add autoupdate * phantomjs add autoupdate * update postgresql 9.6.1 and add autoupdate * puppet add autoupdate * update racket 6.7 and add autoupdate * update rancher 0.12.1 * rethinkdb add autoupdate * update rsync 5.5.0 and add autoupdate * rust-msvc add autoupdate * rust add autoupdate * update sbt 0.13.13 and add autoupdate * update scala 2.12.1 and add autoupdate * update sqlite 3160200 and add autoupdate * update thrift 0.10.0 and add autoupdate * update youtube-dl 2017.01.10
55 lines
1.8 KiB
JSON
55 lines
1.8 KiB
JSON
{
|
|
"homepage": "https://dev.mysql.com/downloads/mysql/",
|
|
"version": "5.7.17",
|
|
"license": "GPLv2",
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://dev.mysql.com/get/mysql-5.7.17-winx64.zip",
|
|
"hash": "53b2e9eec6d7c986444926dd59ae264d156cea21a1566d37547f3e444c0b80c8",
|
|
"extract_dir": "mysql-5.7.17-winx64"
|
|
},
|
|
"32bit": {
|
|
"url": "https://dev.mysql.com/get/mysql-5.7.17-win32.zip",
|
|
"hash": "5fd863bbe76e306989ec2ba43fb4b7e9d72240ac1e058c590cf6ea72cc9454df",
|
|
"extract_dir": "mysql-5.7.17-win32"
|
|
}
|
|
},
|
|
"bin": [
|
|
"bin\\mysqld.exe",
|
|
"bin\\mysql.exe",
|
|
"bin\\mysqldump.exe",
|
|
"bin\\mysqladmin.exe",
|
|
"bin\\mysqlbinlog.exe",
|
|
"bin\\mysqlcheck.exe",
|
|
"bin\\mysqlimport.exe",
|
|
"bin\\mysqlshow.exe",
|
|
"bin\\mysqlslap.exe",
|
|
"bin\\my_print_defaults.exe"
|
|
],
|
|
"post_install": "
|
|
#Initialize data directory (without generating root password)
|
|
mysqld --initialize-insecure
|
|
|
|
#Copy provided sample file to live file location
|
|
cp $dir/my-default.ini $dir/my.ini
|
|
|
|
#Output client configuration to my.ini file so no username is required when connecting
|
|
echo \"\" | out-file \"$dir/my.ini\" -Encoding UTF8 -Append
|
|
echo \"[client]\" | out-file \"$dir/my.ini\" -Encoding UTF8 -Append
|
|
echo \"user=root\" | out-file \"$dir/my.ini\" -Encoding UTF8 -Append
|
|
",
|
|
"checkver": "<h1>MySQL Community Server ([\\d.]+)",
|
|
"autoupdate": {
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://dev.mysql.com/get/mysql-$version-winx64.zip",
|
|
"extract_dir": "mysql-$version-winx64"
|
|
},
|
|
"32bit": {
|
|
"url": "https://dev.mysql.com/get/mysql-$version-win32.zip",
|
|
"extract_dir": "mysql-$version-win32"
|
|
}
|
|
}
|
|
}
|
|
}
|