Difference between revisions of "GnuEmacs"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m (replace PACKAGES variable by SOFTWARE)
Line 4: Line 4:
  
 
<source lang="xml">  
 
<source lang="xml">  
 +
<?xml version="1.0" encoding="UTF-8"?>
 
<packages>
 
<packages>
  
Line 14: Line 15:
  
 
         <check type="uninstall" condition="exists" path="Gnu Emacs 22.1" />
 
         <check type="uninstall" condition="exists" path="Gnu Emacs 22.1" />
         <install cmd='"%PACKAGES%\emacs221.exe" /S' />
+
         <install 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' />
  

Revision as of 21:28, 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' />
        <remove cmd='"%PROGRAMFILES%\Gnu Emacs 22.1\uninstall.exe" /S' />

    </package>


</packages>