Skip to content

Instantly share code, notes, and snippets.

@FilipDeVos
Last active August 29, 2015 14:13
Show Gist options
  • Save FilipDeVos/24c6179313639ea96932 to your computer and use it in GitHub Desktop.
Save FilipDeVos/24c6179313639ea96932 to your computer and use it in GitHub Desktop.
Archi Chocolatey package source files.

Archi

This gist contains the code required to build a chocolatey package for Archi (see http://archimatetool.com)

To create the package make sure you have chocolatey installed, save the 2 files Archi.nuspec and ChocolateyInstall.ps1 (make sure they are UTF-8 files without BOM) and call cpack

<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Archi</id>
<version>3.1.1</version>
<title>Archi, The Free ArchiMate Modelling Tool</title>
<authors>foxtricks</authors>
<owners>foxtricks</owners>
<licenseUrl>http://www.archimatetool.com/faq#licence</licenseUrl>
<projectUrl>http://archimatetool.com</projectUrl>
<iconUrl>http://archimatetool.com/img/archi-logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>The Archi® modelling tool is targeted toward all levels of Enterprise Architects and Modellers. It provides a low cost to entry solution to users who may be making their first steps in the ArchiMate modelling language, or who are looking for a free, cross-platform ArchiMate modelling tool for their company or institution and wish to engage with the language within a TOGAF® or other Enterprise Architecture framework.</description>
<summary>A free and open source modelling tool to create ArchiMate models and sketches. Used by hundreds of Enterprise Architects throughout the world.</summary>
<releaseNotes>Archi 3.1 is here! This latest release of Archi builds upon the features introduced in version 3, which provided support for a new look and feel, Import and Export to CSV, an improved Magic Connector, Find/Replace, Export View to PDF and is built on the latest version of Eclipse 4. As well as fixing some bugs, Archi 3.1 improves the performance of the user interface when using large models, and enforces an extra layer of model and file integrity checking when saving to disk.</releaseNotes>
<copyright>Copyright (c) 2013-2015 Phillip Beauvoir</copyright>
<tags>archimate togaf</tags>
</metadata>
<files>
<file src="ChocolateyInstall.ps1" target="tools\" />
</files>
</package>
$name = "archi"
$url = "http://archimatetool.com/downloads/latest/Archi-win32-Setup-3.1.1.exe"
$kind = "EXE"
$silent = "/VERYSILENT"
Install-ChocolateyPackage $name $kind $silent $url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment