diff options
author | Laurence Kedward <laurence.kedward@bristol.ac.uk> | 2021-11-21 15:05:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-21 16:05:31 +0100 |
commit | 3db95d9cb2bf3bda80bdd985dd0019bec0d0c85b (patch) | |
tree | 1483863471722512ac9308ec64c8ebae6ab46cb4 /ci | |
parent | 9dc068d256da43085582956626881461ffdcd356 (diff) | |
download | fpm-3db95d9cb2bf3bda80bdd985dd0019bec0d0c85b.tar.gz fpm-3db95d9cb2bf3bda80bdd985dd0019bec0d0c85b.zip |
Add: files and workflow to make installer on release. (#616)
Diffstat (limited to 'ci')
-rw-r--r-- | ci/fpm-installer.nsi | 112 | ||||
-rw-r--r-- | ci/installer-icon.ico | bin | 0 -> 16958 bytes |
2 files changed, 112 insertions, 0 deletions
diff --git a/ci/fpm-installer.nsi b/ci/fpm-installer.nsi new file mode 100644 index 0000000..0c0243b --- /dev/null +++ b/ci/fpm-installer.nsi @@ -0,0 +1,112 @@ +; NSIS Installer script for the Fortran Package Manager
+
+; ---------------- Properties ----------------
+; Name used in installer GUI
+Name "Fortran Package Manager"
+
+; Name for folder location and reg key
+!define INSTALL_NAME "fortran-lang"
+
+; Installer icon
+!define MUI_ICON "installer-icon.ico"
+
+; Compress installer
+SetCompress auto
+
+; Always produce unicode installer
+Unicode true
+
+; ---------------- Setup ----------------
+; Use EnVar plugin (https://nsis.sourceforge.io/EnVar_plug-in)
+!addplugindir ".\EnVar_plugin\Plugins\x86-unicode"
+
+; Use the 'Modern' Installer UI macros
+!include "MUI2.nsh"
+
+; Default installation folder (local)
+InstallDir "$LOCALAPPDATA\${INSTALL_NAME}"
+
+; Get installation folder from registry if available
+InstallDirRegKey HKCU "Software\${INSTALL_NAME}" ""
+
+; Request application privileges
+RequestExecutionLevel user
+
+
+; ---------------- Installer Pages ----------------
+!insertmacro MUI_PAGE_COMPONENTS
+!insertmacro MUI_PAGE_DIRECTORY
+!insertmacro MUI_PAGE_INSTFILES
+
+
+; ---------------- Uninstaller Pages ----------------
+!insertmacro MUI_UNPAGE_CONFIRM
+!insertmacro MUI_UNPAGE_INSTFILES
+
+
+; MUI Language
+!insertmacro MUI_LANGUAGE "English"
+
+
+; ---------------- Component: Core Installation ----------------
+Section "-Core" SecCore
+
+ SetOutPath "$INSTDIR"
+
+ ; Store installation folder
+ WriteRegStr HKCU "Software\${INSTALL_NAME}" "" $INSTDIR
+
+ ; Create uninstaller
+ WriteUninstaller "$INSTDIR\Uninstall.exe"
+
+ ; Add to path
+ EnVar::SetHKCU
+ EnVar::AddValue "PATH" "$INSTDIR\fpm"
+ EnVar::AddValue "PATH" "$INSTDIR\MinGit\mingw64\bin"
+
+SectionEnd
+
+
+; ---------------- Component: fpm ----------------
+Section "FPM" SecFPM
+
+ SetOutPath "$INSTDIR\fpm"
+
+ File "fpm.exe"
+
+SectionEnd
+
+
+; ---------------- Component: Git ----------------
+Section "Git for Windows" SecGit
+
+ SetOutPath "$INSTDIR"
+
+ File /r "MinGit"
+
+SectionEnd
+
+
+; ---------------- Uninstaller ----------------
+Section "Uninstall"
+
+ RMDir /r "$INSTDIR"
+
+ DeleteRegKey /ifempty HKCU "Software\${INSTALL_NAME}"
+
+ EnVar::SetHKCU
+ EnVar::DeleteValue "PATH" "$INSTDIR\fpm"
+ EnVar::DeleteValue "PATH" "$INSTDIR\MinGit\mingw64\bin"
+
+SectionEnd
+
+
+; ---------------- Component description Strings (EN) ----------------
+LangString DESC_SecFPM ${LANG_ENGLISH} "The Fortran Package Manager"
+LangString DESC_SecGit ${LANG_ENGLISH} "Git version control (required for FPM)"
+
+
+!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
+ !insertmacro MUI_DESCRIPTION_TEXT ${SecFPM} $(DESC_SecFPM)
+ !insertmacro MUI_DESCRIPTION_TEXT ${SecGit} $(DESC_SecGit)
+!insertmacro MUI_FUNCTION_DESCRIPTION_END
diff --git a/ci/installer-icon.ico b/ci/installer-icon.ico Binary files differnew file mode 100644 index 0000000..a360390 --- /dev/null +++ b/ci/installer-icon.ico |