Difference between revisions of "GVim"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (add external link and and description)
(Link to MSI package)
 
Line 1: Line 1:
'''GVim''' is the Windows version of Vim, a text editor. More infos from [http://www.vim.org/ here].
+
'''[http://www.vim.org/download.php#pc GVim]''' is the Windows version of Vim, a text editor.
  
 
<source lang="xml">
 
<source lang="xml">
Line 28: Line 28:
 
</packages>
 
</packages>
 
</source>
 
</source>
 +
 +
With [[WiX_Toolset]] you can create customized [https://github.com/petrkle/vim-msi MSI package]
 +
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Latest revision as of 11:59, 19 June 2013

GVim is the Windows version of Vim, a text editor.

<?xml version="1.0" encoding="UTF-8"?>

<packages>

 <package id="vim"
        name="gVIM Editor"
        revision="%version%"
        reboot="false"     
        priority="0">

	<variable name="version" value="7.3" />

	<!-- 	there is a re-packaged Installer here on 
		https://github.com/gpwen/vim-installer-mui2/downloads -->

	<check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\vim\vim73\gvim.exe" value="7.3.277.0" />

	<install cmd='"%FREESOFTWARE%\gvim\gvim73_46-int-v0.8.3.exe" /LANG=de /TYPE=FULL /S /D="%PROGRAMFILES%\vim"' />
	<install cmd='"%FREESOFTWARE%\gvim\gvim73_46-int-v0.8.3.exe" /LANG=de /TYPE=FULL /S /D="%PROGRAMFILES%\vim"' />

	<remove cmd='"%PROGRAMFILES%\Vim\vim73\uninstall-gui.exe" /S' />
	<remove cmd='%COMSPEC% /c rd /s /q "%PROGRAMFILES%\vim"' />

 </package>
</packages>

With WiX_Toolset you can create customized MSI package