Difference between revisions of "GnuEmacs"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (replace PACKAGES variable by SOFTWARE)
(add upgrade entry which is a copy/paste of the install entry)
 
Line 16: Line 16:
 
         <check type="uninstall" condition="exists" path="Gnu Emacs 22.1" />
 
         <check type="uninstall" condition="exists" path="Gnu Emacs 22.1" />
 
         <install cmd='"%SOFTWARE%\emacs221.exe" /S' />
 
         <install cmd='"%SOFTWARE%\emacs221.exe" /S' />
 +
        <upgrade cmd='"%SOFTWARE%\emacs221.exe" /S' />
 
         <remove cmd='"%PROGRAMFILES%\Gnu Emacs 22.1\uninstall.exe" /S' />
 
         <remove cmd='"%PROGRAMFILES%\Gnu Emacs 22.1\uninstall.exe" /S' />
  

Latest revision as of 21:30, 12 May 2008

This is a silent installer for GnuEmacs.

Franz Inc. (Allegro C. Lisp) provides a Windows-installer for Gnu Emacs

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

    <package
        id="emacs"
        name="GNU Emacs 22"
        revision="1"
        reboot="false"
        priority="55">

        <check type="uninstall" condition="exists" path="Gnu Emacs 22.1" />
        <install cmd='"%SOFTWARE%\emacs221.exe" /S' />
        <upgrade cmd='"%SOFTWARE%\emacs221.exe" /S' />
        <remove cmd='"%PROGRAMFILES%\Gnu Emacs 22.1\uninstall.exe" /S' />

    </package>


</packages>