From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BgjtE-0004Bw-LL for qemu-devel@nongnu.org; Sat, 03 Jul 2004 08:45:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BgjtB-0004BC-Rv for qemu-devel@nongnu.org; Sat, 03 Jul 2004 08:45:06 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BgjtB-0004B8-8S for qemu-devel@nongnu.org; Sat, 03 Jul 2004 08:45:05 -0400 Received: from [80.91.224.249] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Bgjr5-0007Vy-AT for qemu-devel@nongnu.org; Sat, 03 Jul 2004 08:42:55 -0400 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1Bgjr4-0000uV-00 for ; Sat, 03 Jul 2004 14:42:54 +0200 Received: from amarseille-206-1-26-39.w81-51.abo.wanadoo.fr ([81.51.215.39]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 03 Jul 2004 14:42:54 +0200 Received: from daimon55 by amarseille-206-1-26-39.w81-51.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 03 Jul 2004 14:42:54 +0200 From: Ronald Date: Sat, 03 Jul 2004 14:42:48 +0200 Message-ID: References: <200407021546.08602.jm@poure.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: news Subject: [Qemu-devel] Re: QEMU Win32 installer based on INNO setup Reply-To: daimon55@free.fr, qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Le Fri, 02 Jul 2004 15:46:08 +0200, Jean-Michel POURE a écrit : > Dear friends, > > Currently, finding a Win32 installer is number 2 on our to-do-list. > > If you are aware of a QEMU Win32 installer based on INNO setup, please > visit the home page of http://www.freeoszoo.org and contact us. Also, feel > free to pick-up any to-do item. > > Is anyone aware of the existence of a Win32 installer for QEMU? > > Kindest regards, > Jean-Michel What about nsis installer, like ffmpeg? ;NSIS Script For FFmpeg adapted for Qemu ;Title Of Your Application Name "Qemu" CompletedText "Qemu install completed! Enjoy your meal!" ; do a CRC check CRCCheck On ; output file name OutFile "QemuInstall.exe" ; license page introduction LicenseText "You must agree to this license before installing." ; license data LicenseData ".\COPYING" ; the default installation directory InstallDir "$PROGRAMFILES\Qemu" ;The text to prompt the user to enter a directory DirText "Please select the folder below" Section "Install" ;Install Files SetOutPath $INSTDIR SetCompress Auto SetOverwrite on File ".\qemu.exe" File ".\SDL.dll" File ".\bios.bin" File ".\vgabios.bin" File ".\vgabios-cirrus.bin" File ".\linux_boot.bin" File ".\COPYING" File ".\COPYING.LIB" ; documentation SetOutPath $INSTDIR\doc File ".\doc\qemu-tech.html" File ".\doc\qemu-doc.html" ; Write the uninstall keys for Windows WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Qemu" "DisplayName" "Qemu (remove only)" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Qemu" "UninstallString" "$INSTDIR\Uninst.exe" WriteUninstaller "Uninst.exe" SectionEnd Section "Shortcuts" ;Add Shortcuts SectionEnd UninstallText "This will uninstall Qemu from your system" Section Uninstall ; delete files Delete "$INSTDIR\qemu.exe" Delete "$INSTDIR\SDL.dll" Delete "$INSTDIR\bios.bin" Delete "$INSTDIR\linux_boot.bin" Delete "$INSTDIR\vgabios-cirrus.bin" Delete "$INSTDIR\vgabios.bin" Delete "$INSTDIR\COPYING" Delete "$INSTDIR\COPYING.LIB" ; delete documentation Delete "$INSTDIR\doc\qemu-tech.html" Delete "$INSTDIR\doc\qemu-doc.html" RMDir /r $INSTDIR\doc ; delete uninstaller and unistall registry entries Delete "$INSTDIR\Uninst.exe" DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Qemu" DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Qemu" RMDir "$INSTDIR" SectionEnd