Skip to content

Commit

Permalink
AU: 1 updated - mono
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Feb 26, 2018
1 parent cb22584 commit a688a38
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion automatic/mono/Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [<img src="https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/38688373a17d548271406a273201b950db7dbd28/icons/mono.png" height="48" width="48" /> mono](https://chocolatey.org/packages/mono)
# [<img src="https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/c34f28fa8b47318d55fc0eb48dc53161af85e43b/icons/mono.png" height="48" width="48" /> mono](https://chocolatey.org/packages/mono)

Mono is a software platform designed to allow developers to easily create cross platform applications. Sponsored by Novell, Mono is an open source implementation of Microsoft’s .NET Framework based on the ECMA standards for C# and the Common Language Runtime. A growing family of solutions and an active and enthusiastic contributing community is helping position Mono to become the leading choice for development of Linux applications.

Expand Down
19 changes: 16 additions & 3 deletions automatic/mono/mono.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,31 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>mono</id>
<version>4.4.2</version>
<version>5.10.0.140</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/mono</packageSourceUrl>
<title>Mono</title>
<authors>Miguel de Icaza, other Mono committers</authors>
<owners>chocolatey, Miguel de Icaza, other Mono committers</owners>
<licenseUrl>https://www.mono-project.com/docs/faq/licensing/</licenseUrl>
<projectUrl>https://www.mono-project.com/</projectUrl>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/38688373a17d548271406a273201b950db7dbd28/icons/mono.png</iconUrl>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/c34f28fa8b47318d55fc0eb48dc53161af85e43b/icons/mono.png</iconUrl>
<copyright>© 2018 Mono Project</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!-- Do not touch the description here in the nuspec file. Description is imported during update from the Readme.md file -->
<description>Mono is a software platform designed to allow developers to easily create cross platform applications. Sponsored by Novell, Mono is an open source implementation of Microsoft’s .NET Framework based on the ECMA standards for C# and the Common Language Runtime. A growing family of solutions and an active and enthusiastic contributing community is helping position Mono to become the leading choice for development of Linux applications.</description>
<description><![CDATA[Mono is a software platform designed to allow developers to easily create cross platform applications. Sponsored by Novell, Mono is an open source implementation of Microsoft’s .NET Framework based on the ECMA standards for C# and the Common Language Runtime. A growing family of solutions and an active and enthusiastic contributing community is helping position Mono to become the leading choice for development of Linux applications.
## Features
- [Multi-Platform][]: Runs on *Linux*, *OS X*, *BSD* and *Microsoft Windows*, including *x86*, *x86-64*, *ARM*, *s390*, *PowerPC* and much more.
- [Multi-Language][]: Develop in *C# 4.0* (including LINQ and `dynamic`), *VB 8*, *Java*, *Python*, *Ruby*, *Eiffel*, *F#*, *Oxygene* and more.
- **Binary Compatible**: Built on an implementation of the *ECMA's Common Language Infrastructure* and *C#*.
- [Microsoft Compatible API][]: Run *ASP.NET*, *ADO.NET*, *Silverlight* and *Windows.Forms* applications without recompilation.
- [Open Source, Free Software][Open Source]: Mono's runtime, compilers, and libraries are distributed using the MIT license.
- [Comprehensive Technology Coverage][]: Bindings and managed implementations of many popular libraries and protocols.
## Notes
- Starting from package version 5.8.0.127 and onwards 64bit is supported, unfortunately the 64bit version does not contain the GTK# runtime. Please either install the 32bit edition (`chocol install mono --x86`), or the [gtksharp](https://chocolatey.org/packages/gtksharp) package if this is needed.
]]></description>
<projectSourceUrl>https://github.com/mono/mono</projectSourceUrl>
<docsUrl>http://www.mono-project.com/docs/</docsUrl>
<mailingListUrl>http://www.mono-project.com/community/help/mailing-lists/</mailingListUrl>
Expand Down
12 changes: 6 additions & 6 deletions automatic/mono/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
url = 'http://download.mono-project.com/archive/4.4.2/windows-installer/mono-4.4.2.11-gtksharp-2.12.38-win32-0.msi'
url64bit = ''
url = 'https://download.mono-project.com/archive/5.10.0/windows-installer/mono-5.10.0.140-gtksharp-2.12.45-win32-0.msi'
url64bit = 'https://download.mono-project.com/archive/5.10.0/windows-installer/mono-5.10.0.140-x64-0.msi'
softwareName = 'Mono for Windows*'
checksum = ''
checksumType = ''
checksum64 = ''
checksumType64 = ''
checksum = 'beb3fdb4e28da5a609093b159981a6143c5006aaa3113ba7cf0dbea7b884bebb'
checksumType = 'sha256'
checksum64 = '86f1953c34061c941c49cd445521b06bbc4e7fde1a0027c26f7365b74ead828a'
checksumType64 = 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes = @(0, 3010, 1641)
}
Expand Down

0 comments on commit a688a38

Please sign in to comment.