diff --git a/GoogleChrome.Dev/GoogleChrome.Dev.nuspec b/GoogleChrome.Dev/GoogleChrome.Dev.nuspec new file mode 100644 index 0000000..e706fa9 --- /dev/null +++ b/GoogleChrome.Dev/GoogleChrome.Dev.nuspec @@ -0,0 +1,24 @@ + + + + GoogleChrome.Dev + Google Chrome Dev Web Browser + 24.0.1297.0 + Google + Ethan J Brown + Google Chrome Dev is released once or twice a week and is generally several major release ahead of the stable channel. + Dev channel: Want to see what's happening quickly, then you want the Dev channel. The Dev channel gets updated once or twice weekly, and it shows what we're working on right now. There's no lag between major versions, whatever code we've got, you will get. While this build does get tested, it is still subject to bugs, as we want people to see what's new as soon as possible. + + Note that Chrome auto-updates itself after an initial install. + + http://www.chromium.org/getting-involved/dev-channel + google chrome web browser html5 + https://www.google.com/chrome/intl/en/eula_text.html + false + https://github.com/Iristyle/ChocolateyPackages/raw/master/GoogleChrome.Dev/GoogleChrome.png + + + + + + diff --git a/GoogleChrome.Dev/GoogleChrome.png b/GoogleChrome.Dev/GoogleChrome.png new file mode 100644 index 0000000..772d809 Binary files /dev/null and b/GoogleChrome.Dev/GoogleChrome.png differ diff --git a/GoogleChrome.Dev/tools/chocolateyInstall.ps1 b/GoogleChrome.Dev/tools/chocolateyInstall.ps1 new file mode 100644 index 0000000..b3ffe88 --- /dev/null +++ b/GoogleChrome.Dev/tools/chocolateyInstall.ps1 @@ -0,0 +1,18 @@ +$package = 'Chrome.Dev' + +try { + + $params = @{ + PackageName = $package; + FileType = 'exe'; + SilentArgs = '/silent /installsource silent /install'; + Url = 'https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B0AA7B49A-29EA-0AE3-8A45-61F351F89414%7D%26lang%3Den%26browser%3D2%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dfalse%26ap%3D2.0-dev%26installdataindex%3Ddefaultbrowser/update2/installers/ChromeSetup.exe' + } + + Install-ChocolateyPackage @params + + Write-ChocolateySuccess $package +} catch { + Write-ChocolateyFailure $package "$($_.Exception.Message)" + throw +}