]> git.lyx.org Git - features.git/blob - development/Win32/packaging/installer/settings.nsh
typo
[features.git] / development / Win32 / packaging / installer / settings.nsh
1 /*\r
2 \r
3 Settings for LyX installer\r
4 \r
5 These typically need to be modified for each LyX release\r
6 \r
7 */\r
8 \r
9 #--------------------------------\r
10 # Windows version on which the complier is running\r
11 \r
12 !define COMPILER_OS VISTA\r
13 #!define COMPILER_OS XP\r
14 \r
15 #--------------------------------\r
16 # Version number\r
17 \r
18 !define APP_VERSION_MAJOR 1\r
19 !define APP_VERSION_MINOR 6\r
20 !define APP_VERSION_REVISION 0\r
21 !define APP_VERSION_BUILD 0 # Start with 1 for the installer releases of each version\r
22 \r
23 !define /date APP_VERSION "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}svn %Y%m%d" # Version to display\r
24 \r
25 #--------------------------------\r
26 # Installer file name\r
27 \r
28 # Typical names for the release are "LyX-1.5.4-1-Installer.exe" etc.\r
29 \r
30 !ifndef ExeFile\r
31   !define /date ExeFile "LyX-${APP_VERSION_MAJOR}${APP_VERSION_MINOR}svn-%Y%m%d-Installer.exe"\r
32 !endif\r
33 !ifndef BundleExeFile\r
34   !define /date BundleExeFile "LyX-${APP_VERSION_MAJOR}${APP_VERSION_MINOR}svn-%Y%m%d-Installer-Bundle.exe"\r
35 !endif\r
36 !ifndef MinimalExeFile\r
37   !define /date MinimalExeFile "LyX-${APP_VERSION_MAJOR}${APP_VERSION_MINOR}svn-%Y%m%d-Installer-Minimal.exe"\r
38 !endif\r
39 \r
40 #--------------------------------\r
41 # File names of component installers\r
42 \r
43 !define SETUPFILE_LATEX "basic-miktex-2.7.3248.exe"\r
44 !define SETUPFILE_IMAGEMAGEMAGICK "ImageMagick-6.4.1-0-Q16-windows-dll.exe"\r
45 !define SETUPFILE_GHOSTSCRIPT "gs861w32.exe"\r
46 \r
47 #--------------------------------\r
48 # Download size of components (in KB)\r
49 \r
50 !define SIZE_DOWNLOAD_LATEX 78493\r
51 !define SIZE_DOWNLOAD_IMAGEMAGICK 8565\r
52 !define SIZE_DOWNLOAD_GHOSTSCRIPT 12469\r
53 \r
54 #--------------------------------\r
55 # Approximations of space required for components (in KB)\r
56 \r
57 !define SIZE_LATEX 225000\r
58 !define SIZE_IMAGEMAGICK 34500\r
59 !define SIZE_GHOSTSCRIPT 31500\r