15 lines
391 B
NSIS
15 lines
391 B
NSIS
|
|
; The stuff to install
|
|
Section "Installing" ;No components page, name is not important
|
|
SetOutPath $INSTPATH
|
|
DetailPrint "Extracting package..."
|
|
|
|
Nsis7z::ExtractWithDetails "$EXEDIR\sinfar_all_files_v30.7z" "Installing package %s..."
|
|
|
|
DetailPrint "Extraction complete."
|
|
|
|
DetailPrint "Deleting temporary files."
|
|
; Delete "$INSTPATH\sinfarFiles.7z"
|
|
SectionEnd ; end the section
|
|
|