mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
d1a3055578
* use nsDialogs instead of InstallOptions for custom wizard pages, faster & easier to customize * upgrade to Modern UI 2 * use MultiUser.nsh to support multiple installation modes (all users / current user) in a much more simple way * use LangFile.nsh for the language files, again less scripting required * simplified installer structure * more meaningful variable names * more comments * minor fixes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24062 a592a061-630c-0410-9148-cb99ea01b6c8
68 lines
1.6 KiB
Plaintext
68 lines
1.6 KiB
Plaintext
/*
|
|
|
|
NSIS Script - LyX 1.5/1.6 Installer for Win32
|
|
Authors: Joost Verburg, Angus Leeming, Uwe Stöhr
|
|
Requires NSIS 2.36 or later
|
|
|
|
Licence details for all installer scripts can be found in the file COPYING
|
|
|
|
*/
|
|
|
|
!include settings.nsh
|
|
|
|
#--------------------------------
|
|
# The following commands use makensis to compile two applications.
|
|
# Although these applications are written in NSIS, they do not install anything.
|
|
|
|
# Compile the launcher
|
|
!system '"${NSISDIR}\makensis.exe" "${FILES_LAUNCHER}\launcher.nsi"'
|
|
|
|
# Compile Windows PDF view helper
|
|
!system '"${NSISDIR}\makensis.exe" "${FILES_PDFVIEW}\pdfview.nsi"'
|
|
|
|
#--------------------------------
|
|
# Output file can be specified using command line option
|
|
# /DExeFile=/path/to/installer or /DBundleExeFile=/path/to/installer if
|
|
# SETUPTYPE_BUNDLE is defined.
|
|
|
|
!ifdef SETUPTYPE_BUNDLE
|
|
# Bundle installer
|
|
!ifdef BundleExeFile
|
|
OutFile "${BundleExeFile}"
|
|
!else
|
|
Outfile "${SETUP_EXE}"
|
|
!endif
|
|
!else
|
|
# Regular installer
|
|
!ifdef ExeFile
|
|
OutFile "${ExeFile}"
|
|
!else
|
|
Outfile "${SETUP_EXE}"
|
|
!endif
|
|
!endif
|
|
|
|
#--------------------------------
|
|
# Header files
|
|
|
|
!include include\declarations.nsh
|
|
!include include\detection.nsh
|
|
!include include\dictlist.nsh
|
|
!include include\filelist.nsh
|
|
!include include\gui.nsh
|
|
!include include\init.nsh
|
|
!include include\langlist.nsh
|
|
|
|
#--------------------------------
|
|
# Setup
|
|
|
|
!include setup\configure.nsh
|
|
!include setup\install.nsh
|
|
!include setup\uninstall.nsh
|
|
|
|
#--------------------------------
|
|
# User interface (wizard pages)
|
|
|
|
!include gui\external.nsh
|
|
!include gui\langselect.nsh
|
|
!include gui\reinstall.nsh
|