qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] QEMU Win32 installer based on INNO setup
@ 2004-07-02 13:46 Jean-Michel POURE
  2004-07-03 12:42 ` [Qemu-devel] " Ronald
  0 siblings, 1 reply; 2+ messages in thread
From: Jean-Michel POURE @ 2004-07-02 13:46 UTC (permalink / raw)
  To: qemu-devel

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Qemu-devel] Re: QEMU Win32 installer based on INNO setup
  2004-07-02 13:46 [Qemu-devel] QEMU Win32 installer based on INNO setup Jean-Michel POURE
@ 2004-07-03 12:42 ` Ronald
  0 siblings, 0 replies; 2+ messages in thread
From: Ronald @ 2004-07-03 12:42 UTC (permalink / raw)
  To: qemu-devel

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-07-03 12:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-02 13:46 [Qemu-devel] QEMU Win32 installer based on INNO setup Jean-Michel POURE
2004-07-03 12:42 ` [Qemu-devel] " Ronald

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).