Rearranged subsections

This commit is contained in:
John Garland 2009-02-24 01:27:51 +00:00
commit 4a8c73f9d0

View file

@ -108,7 +108,7 @@
; Macros ; Macros
!macro download url filename !macro download url filename
DetailPrint "Attempting to download ${url} as ${filename}" DetailPrint "Downloading: ${url}"
NSISdl::download ${url} ${filename} NSISdl::download ${url} ${filename}
Pop $0 Pop $0
StrCmp $0 "success" +2 StrCmp $0 "success" +2
@ -138,22 +138,6 @@
; Installer Sections ; Installer Sections
SubSection /e "Core" core
Section "Deluge" deluge
SectionIn RO
${install_MSI} DELUGE_INSTALLER "$INSTDIR\Deluge"
SetOutPath "$INSTDIR\Deluge"
WriteUninstaller "$INSTDIR\Deluge\uninstall.exe"
SectionEnd
SubSectionEnd
SubSection /e "Dependencies" dependencies SubSection /e "Dependencies" dependencies
Section "Python" python Section "Python" python
@ -237,3 +221,19 @@ Section "Uninstall"
RMDir "$INSTDIR" RMDir "$INSTDIR"
SectionEnd SectionEnd
SubSection /e "Core" core
Section "Deluge" deluge
SectionIn RO
${install_MSI} DELUGE_INSTALLER "$INSTDIR\Deluge"
SetOutPath "$INSTDIR\Deluge"
WriteUninstaller "$INSTDIR\Deluge\uninstall.exe"
SectionEnd
SubSectionEnd