From: <pst...@us...> - 2008-12-31 02:42:46
|
Revision: 664 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=664&view=rev Author: pstieber Date: 2008-12-31 02:42:43 +0000 (Wed, 31 Dec 2008) Log Message: ----------- Added a very simple nullsoft installation script. Added Paths: ----------- branches/jazz-4.1.3/Jazz-4.1.3.nsi Added: branches/jazz-4.1.3/Jazz-4.1.3.nsi =================================================================== --- branches/jazz-4.1.3/Jazz-4.1.3.nsi (rev 0) +++ branches/jazz-4.1.3/Jazz-4.1.3.nsi 2008-12-31 02:42:43 UTC (rev 664) @@ -0,0 +1,61 @@ +; Jazz-4.1.3.nsi +; +; This script simnply places an old version of Jazz++ in a directory on +; the user's desktop. + +;-------------------------------- + +; The name of the installer. +Name "Jazz++ 4.1.3" + +; The file to write. +OutFile "Jazz-4.1.3-Installer.exe" + +; The default installation directory +InstallDir $DESKTOP\Jazz-4.1.3 + +; Request application privileges for Windows Vista +RequestExecutionLevel user + +;-------------------------------- + +; Pages + +Page directory +Page instfiles + +;-------------------------------- + +; The stuff to install +Section "" ; There is no components page, so the name is not important. + + ; Set output path to the installation directory and put the executable + ; in this directory. + SetOutPath $INSTDIR + File .\vc6\jazz32\release\jazz32.exe + + ; Now put the configuration files in a subdirectory. + SetOutPath "$INSTDIR\conf" + File .\jazz.cfg + File .\src\jazz.mid + File .\conf\ctrlnam.jzi + File .\conf\e26.jzi + File .\conf\e26voice.jzi + File .\conf\gm.jzi + File .\conf\gmdrmnam.jzi + File .\conf\gmdrmset.jzi + File .\conf\gmvoices.jzi + File .\conf\gs.jzi + File .\conf\gsdrmset.jzi + File .\conf\gsvoices.jzi + File .\conf\jv1000.jzi + File .\conf\README + File .\conf\sc88pdrm.jzi + File .\conf\sc88pro.jzi + File .\conf\sc88pvoi.jzi + File .\conf\xg.jzi + File .\conf\xgdrmnam.jzi + File .\conf\xgdrmset.jzi + File .\conf\xgvoices.jzi + +SectionEnd Property changes on: branches/jazz-4.1.3/Jazz-4.1.3.nsi ___________________________________________________________________ Added: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |