From: Holger Z. <hz...@us...> - 2004-10-25 15:15:35
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8940 Modified Files: install.xml Added Files: shortcutSpec.xml Log Message: shortcut creation for windows --- NEW FILE: shortcutSpec.xml --- <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <shortcuts> <programGroup defaultName="Jake2" location="applications"/> <shortcut name="Jake2" programGroup="yes" desktop="no" applications="no" startMenu="no" startup="no" target="$INSTALL_PATH/Jake2.bat" workingDirectory="$INSTALL_PATH" commandLine="" description="Jake2" initialState="noShow"> <createForPack name="Windows libraries and scripts"/> </shortcut> <shortcut name="Uninstaller" programGroup="yes" desktop="no" applications="no" startMenu="no" startup="no" target="$INSTALL_PATH/Uninstaller/uninstaller.jar" commandLine="" description="uninstall Jake2"> <createForPack name="Windows libraries and scripts"/> </shortcut> </shortcuts> Index: install.xml =================================================================== RCS file: /cvsroot/jake2/jake2/install.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** install.xml 24 Oct 2004 20:40:06 -0000 1.1 --- install.xml 25 Oct 2004 15:15:26 -0000 1.2 *************** *** 1,72 **** ! <?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?> ! ! ! <installation version="1.0"> ! ! <info> ! <appname>Jake2</appname> ! <appversion>cvs</appversion> ! <authors> ! <author name="Bytonic Software" email="ja...@by..."/> ! </authors> ! <url>http://www.bytonic.de</url> ! </info> ! ! <guiprefs width="640" height="480" resizable="no"/> ! ! <locale> ! <langpack iso3="eng"/> ! </locale> ! ! <resources> ! <res id="LicencePanel.licence" src="LICENSE"/> ! <res id="InfoPanel.info" src="README"/> ! <!-- res id="Installer.image" src="../resources/icon.png"/ --> ! </resources> ! ! <panels> ! <panel classname="HelloPanel"/> ! <panel classname="InfoPanel"/> ! <panel classname="LicencePanel"/> ! <panel classname="TargetPanel"/> ! <panel classname="PacksPanel"/> ! <panel classname="InstallPanel"/> ! <panel classname="SimpleFinishPanel"/> ! </panels> ! ! <packs> ! <pack name="Jake2" required="yes"> ! <description>Jake2 files</description> ! <fileset dir="." targetdir="$INSTALL_PATH"> ! <include name="*"/> ! <include name="lib/*.jar"/> ! <exclude name="*.bat"/> ! <exclude name="*.sh"/> ! </fileset> ! <executable type="jar" ! targetfile="$INSTALL_PATH/lib/jake2.jar" ! class="jake2.install.Q2DataInstaller" ! stage="postinstall" ! keep="true"> ! <args> ! <arg value="$INSTALL_PATH"/> ! </args> ! </executable> ! </pack> ! <pack name="Linux libraries and scripts" required="yes"> ! <os name="Linux" arch="i386"/> ! <description>jogl and joal libraries for Linux</description> ! <file src="lib/linux" targetdir="$INSTALL_PATH/lib"/> ! <file src="Jake2.sh" targetdir="$INSTALL_PATH"/> ! <executable targetfile="$INSTALL_PATH/Jake2.sh" stage="never"/> ! </pack> ! <pack name="Windows libraries and scripts" required="yes"> ! <os family="windows" arch="i386"/> ! <description>jogl and joal libraries for Windows</description> ! <file src="lib/windows" targetdir="$INSTALL_PATH/lib"/> ! <file src="Jake2.bat" targetdir="$INSTALL_PATH"/> ! <executable targetfile="$INSTALL_PATH/Jake2.bat" stage="never"/> ! </pack> ! </packs> ! ! </installation> --- 1,77 ---- ! <?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?> ! ! ! <installation version="1.0"> ! ! <info> ! <appname>Jake2</appname> ! <appversion>cvs</appversion> ! <authors> ! <author name="Bytonic Software" email="ja...@by..."/> ! </authors> ! <url>http://www.bytonic.de</url> ! </info> ! ! <guiprefs width="640" height="480" resizable="no"/> ! ! <locale> ! <langpack iso3="eng"/> ! </locale> ! ! <resources> ! <res id="LicencePanel.licence" src="LICENSE"/> ! <res id="InfoPanel.info" src="README"/> ! <res src="../shortcutSpec.xml" id="shortcutSpec.xml" /> ! <!-- res id="Installer.image" src="../resources/icon.png"/ --> ! </resources> ! ! <panels> ! <panel classname="HelloPanel"/> ! <panel classname="InfoPanel"/> ! <panel classname="LicencePanel"/> ! <panel classname="TargetPanel"/> ! <panel classname="PacksPanel"/> ! <panel classname="InstallPanel"/> ! <panel classname="ShortcutPanel"/> ! <panel classname="SimpleFinishPanel"/> ! </panels> ! ! <packs> ! <pack name="Jake2" required="yes"> ! <description>Jake2 files</description> ! <fileset dir="." targetdir="$INSTALL_PATH"> ! <include name="*"/> ! <include name="lib/*.jar"/> ! <exclude name="*.bat"/> ! <exclude name="*.sh"/> ! <exclude name="*.ico"/> ! </fileset> ! <executable type="jar" ! targetfile="$INSTALL_PATH/lib/jake2.jar" ! class="jake2.install.Q2DataInstaller" ! stage="postinstall" ! keep="true"> ! <args> ! <arg value="$INSTALL_PATH"/> ! </args> ! </executable> ! </pack> ! <pack name="Linux libraries and scripts" required="yes"> ! <os name="Linux" arch="i386"/> ! <description>jogl and joal libraries for Linux</description> ! <file src="lib/linux" targetdir="$INSTALL_PATH/lib"/> ! <file src="Jake2.sh" targetdir="$INSTALL_PATH"/> ! <executable targetfile="$INSTALL_PATH/Jake2.sh" stage="never"/> ! </pack> ! <pack name="Windows libraries and scripts" required="yes"> ! <os family="windows"/> ! <description>jogl and joal libraries for Windows</description> ! <file src="lib/windows" targetdir="$INSTALL_PATH/lib"/> ! <file src="Jake2.bat" targetdir="$INSTALL_PATH"/> ! <executable targetfile="$INSTALL_PATH/Jake2.bat" stage="never"/> ! </pack> ! </packs> ! ! <native type="izpack" name="ShellLink.dll"/> ! ! </installation> |