summaryrefslogtreecommitdiff
path: root/nsis/installer.nsi.in
diff options
context:
space:
mode:
Diffstat (limited to 'nsis/installer.nsi.in')
-rw-r--r--nsis/installer.nsi.in78
1 files changed, 78 insertions, 0 deletions
diff --git a/nsis/installer.nsi.in b/nsis/installer.nsi.in
new file mode 100644
index 0000000..a757628
--- /dev/null
+++ b/nsis/installer.nsi.in
@@ -0,0 +1,78 @@
+;-------------------------------------------------------------------------------
+; Includes
+!include "MUI2.nsh"
+!include "LogicLib.nsh"
+!include "WinVer.nsh"
+!include "x64.nsh"
+
+;-------------------------------------------------------------------------------
+; Constants
+!define PRODUCT_NAME "@PACKAGE_TITLE@"
+!define PRODUCT_DESCRIPTION "TODO"
+!define COPYRIGHT "GNU GPLv3"
+!define PRODUCT_VERSION "@PACKAGE_VERSION@.0.0"
+!define SETUP_VERSION 1.0.0.0
+
+;-------------------------------------------------------------------------------
+; Attributes
+Name "@PACKAGE_NAME@"
+OutFile "@PACKAGE_NAME@-Setup.exe"
+InstallDir "$PROGRAMFILES\@PACKAGE_TITLE@"
+InstallDirRegKey HKCU "Software\Louie S\@PACKAGE_TITLE@" ""
+RequestExecutionLevel user ; user|highest|admin
+
+;-------------------------------------------------------------------------------
+; Version Info
+VIProductVersion "${PRODUCT_VERSION}"
+VIAddVersionKey "ProductName" "${PRODUCT_NAME}"
+VIAddVersionKey "ProductVersion" "${PRODUCT_VERSION}"
+VIAddVersionKey "FileDescription" "${PRODUCT_DESCRIPTION}"
+VIAddVersionKey "LegalCopyright" "${COPYRIGHT}"
+VIAddVersionKey "FileVersion" "${SETUP_VERSION}"
+
+;-------------------------------------------------------------------------------
+; Modern UI Appearance
+;!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\orange-install.ico"
+!define MUI_HEADERIMAGE
+;!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\orange.bmp"
+;!define MUI_WELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\orange.bmp"
+!define MUI_FINISHPAGE_NOAUTOCLOSE
+
+;-------------------------------------------------------------------------------
+; Installer Pages
+!insertmacro MUI_PAGE_WELCOME
+!insertmacro MUI_PAGE_LICENSE "..\COPYING"
+!insertmacro MUI_PAGE_COMPONENTS
+!insertmacro MUI_PAGE_DIRECTORY
+!insertmacro MUI_PAGE_INSTFILES
+!insertmacro MUI_PAGE_FINISH
+
+;-------------------------------------------------------------------------------
+; Uninstaller Pages
+!insertmacro MUI_UNPAGE_WELCOME
+!insertmacro MUI_UNPAGE_CONFIRM
+!insertmacro MUI_UNPAGE_INSTFILES
+!insertmacro MUI_UNPAGE_FINISH
+
+;-------------------------------------------------------------------------------
+; Languages
+!insertmacro MUI_LANGUAGE "English"
+
+;-------------------------------------------------------------------------------
+; Installer Sections
+Section "My Application" MyApp
+ SetOutPath $INSTDIR
+ File "..\src\@PACKAGE_NAME@.exe"
+ ;File "Readme.txt"
+ WriteUninstaller "$INSTDIR\Uninstall.exe"
+SectionEnd
+
+;-------------------------------------------------------------------------------
+; Uninstaller Sections
+Section "Uninstall"
+ Delete "$INSTDIR\@PACKAGE_NAME@.exe"
+ Delete "$INSTDIR\Uninstall.exe"
+ ; FIXME directory is not being uninstalled
+ RMDir "$INSTDIR"
+ ;DeleteRegKey /ifempty HKCU "Software\Modern UI Test"
+SectionEnd