27 lines
798 B
NSIS
27 lines
798 B
NSIS
|
|
; The stuff to install
|
|
Section "Installing haks and tlk" ;No components page, name is not important
|
|
SetOutPath $INSTPATH
|
|
DetailPrint "Extracting custom content..."
|
|
|
|
;Nsis7z::ExtractWithDetails "$EXEDIR\sinfar_all_files_v30.7z" "Installing package %s..."
|
|
|
|
DetailPrint "Custom content extraction complete."
|
|
|
|
; DetailPrint "Deleting temporary files."
|
|
; Delete "$INSTPATH\sinfarFiles.7z"
|
|
SectionEnd ; end the section
|
|
|
|
|
|
Section "Installing haks and tlk" ;No components page, name is not important
|
|
|
|
StrCmp $INSTALL_TYPE "diamond" skip_ee_extract
|
|
SetOutPath "$EE_EXEPATH\bin\win32_8181"
|
|
DetailPrint "Extracting Sinfare EE 8181..."
|
|
File "win32_8181.7z"
|
|
Nsis7z::ExtractWithDetails "win32_8181.7z" "Installing Sinfer EE v8181 %s..."
|
|
|
|
skip_ee_extract:
|
|
SectionEnd ; end the section
|
|
|