ScoopInstaller_Main/apache.json
Konstantin Molchanov 038d5983bc Apache: New version, 64 bit package, hash updated.
Hi,

Apache installation would fail due to hash check fail:

~ $ scoop install apache
installing apache (2.4.6)
downloading http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.6-win32-VC11.zip...done
checking hash...hash check failed for http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.6-win32-VC11.zip. exp
ected: E112445A222916FF6C60F4258373CF9B427B0E9EBCEB01E67DDB7C3CECEF892B, actual: 864d04fdb5a03f0dda2af0cd26a67fa6f2d8cd5
edde3eb40e3e95bb2c05b4899!

Apparently, Apache uses SHA1, not MD5.

Instead of just updating the hash, I've also updated the version, and added 64 bit download.

Thanks!
2014-03-15 20:44:02 +03:00

36 lines
1001 B
JSON

{
"homepage": "http://www.apachelounge.com",
"version": "2.4.7",
"license": "Apache 2.0",
"architecture": {
"64bit": {
"url": "http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.7-win64-VC11.zip",
"hash": "sha1:88A586D2794BF46952259E2C76D781246D70C057",
"extract_dir": "Apache24-winx64"
},
"32bit": {
"url": "http://www.apachelounge.com/download/VC11/binaries/httpd-2.4.7-win32-VC11.zip",
"hash": "sha1:B155FC75A540385E18F59E391DB035318D9B21F4",
"extract_dir": "Apache24-win32"
}
},
"bin": [
"bin\\ab.exe",
"bin\\abs.exe",
"bin\\htcacheclean.exe",
"bin\\htdbm.exe",
"bin\\htdigest.exe",
"bin\\htpasswd.exe",
"bin\\httpd.exe",
"bin\\httxt2dbm.exe",
"bin\\logresolve.exe",
"bin\\rotatelogs.exe"
],
"post_install": "
# set directory in httpd.conf
$conf = \"$dir/conf/httpd.conf\"
$root=(scoop which httpd | split-path -res -par | split-path -par) -replace '\\\\', '/';
(gc $conf) | % { $_ -replace 'c:/Apache24', \"$root\" } | sc $conf
"
}