Skip to content

Commit

Permalink
[fix] windows: typo license
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin Bourgerie committed Apr 16, 2013
1 parent de9d1b8 commit fa68d6b
Showing 1 changed file with 178 additions and 178 deletions.
356 changes: 178 additions & 178 deletions tools/ms_windows/opa_pkg/install.nsi
@@ -1,178 +1,178 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
!include "MUI2.nsh" !include "MUI2.nsh"
#!include "FileAssociation.nsh" #!include "FileAssociation.nsh"


### Env variables ### Env variables


!include "WordFunc.nsh" !include "WordFunc.nsh"
!define REG_ENVIRONMENT "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" !define REG_ENVIRONMENT "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"
!macro DualUseFunctions_ un_ !macro DualUseFunctions_ un_
function ${un_}SetPathVar function ${un_}SetPathVar
# stack top: <'string to add'> / <AppendFlag> # stack top: <'string to add'> / <AppendFlag>
Exch $0 ; new string Exch $0 ; new string
Exch Exch
Exch $1 ; append = 2, prefix = 1, remove = 0 Exch $1 ; append = 2, prefix = 1, remove = 0
Push $R0 ; saved working registers Push $R0 ; saved working registers


ReadRegStr $R0 HKLM "${REG_ENVIRONMENT}" "Path" ReadRegStr $R0 HKLM "${REG_ENVIRONMENT}" "Path"


${Select} $1 ${Select} $1
${Case} 0 ${Case} 0
${${un_}WordAdd} "$R0" ";" "-$0" $R0 ${${un_}WordAdd} "$R0" ";" "-$0" $R0
${Case} 1 ${Case} 1
${${un_}WordAdd} "$0" ";" "+$R0" $R0 ${${un_}WordAdd} "$0" ";" "+$R0" $R0
${Case} 2 ${Case} 2
${${un_}WordAdd} "$R0" ";" "+$0" $R0 ${${un_}WordAdd} "$R0" ";" "+$0" $R0
${EndSelect} ${EndSelect}


WriteRegExpandStr HKLM "${REG_ENVIRONMENT}" "Path" "$R0" WriteRegExpandStr HKLM "${REG_ENVIRONMENT}" "Path" "$R0"
System::Call 'Kernel32::SetEnvironmentVariableA(t, t) i("PATH", R0).r2' System::Call 'Kernel32::SetEnvironmentVariableA(t, t) i("PATH", R0).r2'


Pop $R0 ; restore registers Pop $R0 ; restore registers
Pop $1 Pop $1
Pop $0 Pop $0
functionEnd functionEnd
!macroend !macroend
!insertmacro DualUseFunctions_ "" !insertmacro DualUseFunctions_ ""
!insertmacro DualUseFunctions_ "un." !insertmacro DualUseFunctions_ "un."


### end env variables ### end env variables






# General information # General information
!define PRODUCT_NAME "Opa" !define PRODUCT_NAME "Opa"
!define PRODUCT_PUBLISHER "MLstate" !define PRODUCT_PUBLISHER "MLstate"
!define PRODUCT_WEB_SITE "http://www.opalang.org" !define PRODUCT_WEB_SITE "http://www.opalang.org"
!define PRODUCT_VERSION "0.9.0" !define PRODUCT_VERSION "0.9.0"




# We support french and english # We support french and english
!insertmacro MUI_LANGUAGE English !insertmacro MUI_LANGUAGE English
!insertmacro MUI_LANGUAGE French !insertmacro MUI_LANGUAGE French


LangString MsgPost ${LANG_ENGLISH} "Installation done.$\r$\nWould you like to view the README, verify dependencies and install syntax highlighting?$\r$\nYou can relaunch his operation later if needed ($INSTDIR\share\opa\post_install.cmd)" LangString MsgPost ${LANG_ENGLISH} "Installation done.$\r$\nWould you like to view the README, verify dependencies and install syntax highlighting?$\r$\nYou can relaunch his operation later if needed ($INSTDIR\share\opa\post_install.cmd)"
LangString MsgPost ${LANG_FRENCH} "Installation terminée.$\r$\nVoulez-vous lire le README, vérifier l'installation et installer la coloration syntaxique ?$\r$\nVous pouvez relancer cette operation plus tard si besoin ($INSTDIR\share\opa\post_install.cmd)" LangString MsgPost ${LANG_FRENCH} "Installation terminée.$\r$\nVoulez-vous lire le README, vérifier l'installation et installer la coloration syntaxique ?$\r$\nVous pouvez relancer cette operation plus tard si besoin ($INSTDIR\share\opa\post_install.cmd)"


# post install script # post install script
Function .onInstSuccess Function .onInstSuccess
MessageBox MB_YESNO $(MsgPost) IDNO NoReadme MessageBox MB_YESNO $(MsgPost) IDNO NoReadme
Exec '"$INSTDIR\share\opa\post_install.cmd" "$INSTDIR"' Exec '"$INSTDIR\share\opa\post_install.cmd" "$INSTDIR"'
NoReadme: NoReadme:
FunctionEnd FunctionEnd




Name "${PRODUCT_NAME}" Name "${PRODUCT_NAME}"
outFile "installer.exe" outFile "installer.exe"
Icon bin\uninstall\opa_logo_72x72.ico Icon bin\uninstall\opa_logo_72x72.ico
CRCCheck on CRCCheck on
BrandingText "MLstate" BrandingText "MLstate"


InstallDir "C:\Dev\Opa" InstallDir "C:\Dev\Opa"


LangString MsgFolder ${LANG_ENGLISH} "Please, choose an installation folder (without symbols or spaces)." LangString MsgFolder ${LANG_ENGLISH} "Please, choose an installation folder (without symbols or spaces)."
LangString MsgFolder ${LANG_FRENCH} "Veuillez choisir un répertoire d'intallation (sans symboles ou espaces)." LangString MsgFolder ${LANG_FRENCH} "Veuillez choisir un répertoire d'intallation (sans symboles ou espaces)."


DirText $(MsgFolder) DirText $(MsgFolder)


# Include license # Include license
LicenseLangString license ${LANG_ENGLISH} share/doc/opa/AGPL LicenseLangString license ${LANG_ENGLISH} share/doc/opa/LICENSE
LicenseLangString license ${LANG_FRENCH} share/doc/opa/AGPL LicenseLangString license ${LANG_FRENCH} share/doc/opa/LICENSE
LicenseData $(license) LicenseData $(license)


LangString MsgLicense ${LANG_ENGLISH} "Please read and accept Opa license" LangString MsgLicense ${LANG_ENGLISH} "Please read and accept Opa license"
LangString MsgLicense ${LANG_FRENCH} "Veuillez lire et accepter la licence d'utilisation d'Opa" LangString MsgLicense ${LANG_FRENCH} "Veuillez lire et accepter la licence d'utilisation d'Opa"
LicenseText $(MsgLicense) LicenseText $(MsgLicense)


#!define MUI_WELCOMEPAGE_TEXT "Hello!" #!define MUI_WELCOMEPAGE_TEXT "Hello!"
#!define MUI_WELCOMEPAGE_TITLE "Title!" #!define MUI_WELCOMEPAGE_TITLE "Title!"
#!insertmacro MUI_PAGE_WELCOME #!insertmacro MUI_PAGE_WELCOME


!define REG_UNINSTALL "Software\Microsoft\Windows\CurrentVersion\Uninstall\Opa" !define REG_UNINSTALL "Software\Microsoft\Windows\CurrentVersion\Uninstall\Opa"


Page license Page license
Page directory Page directory
Page components Page components
Page instfiles Page instfiles


Section Opa Section Opa
DetailPrint "Opa" DetailPrint "Opa"
SectionIn RO SectionIn RO


WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayName" "${PRODUCT_NAME}" WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayName" "${PRODUCT_NAME}"
WriteRegStr HKLM "${REG_UNINSTALL}" "Publisher" "${PRODUCT_PUBLISHER}" WriteRegStr HKLM "${REG_UNINSTALL}" "Publisher" "${PRODUCT_PUBLISHER}"
WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayIcon" "$INSTDIR\bin\uninstall\opa_logo_72x72.ico" WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayIcon" "$INSTDIR\bin\uninstall\opa_logo_72x72.ico"
WriteRegStr HKLM "${REG_UNINSTALL}" "UninstallString" "$INSTDIR\bin\uninstall\Uninstall.exe" WriteRegStr HKLM "${REG_UNINSTALL}" "UninstallString" "$INSTDIR\bin\uninstall\Uninstall.exe"
WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayVersion" "1.0.7" WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayVersion" "1.0.7"
WriteRegDWORD HKLM "${REG_UNINSTALL}" "EstimatedSize" "70000" WriteRegDWORD HKLM "${REG_UNINSTALL}" "EstimatedSize" "70000"
WriteRegDWORD HKLM "${REG_UNINSTALL}" "NoModify" 1 WriteRegDWORD HKLM "${REG_UNINSTALL}" "NoModify" 1
WriteRegDWORD HKLM "${REG_UNINSTALL}" "NoRepair" 1 WriteRegDWORD HKLM "${REG_UNINSTALL}" "NoRepair" 1
WriteRegStr HKLM "${REG_UNINSTALL}" "InstallSource" "$INSTDIR\" WriteRegStr HKLM "${REG_UNINSTALL}" "InstallSource" "$INSTDIR\"
WriteRegStr HKLM "${REG_UNINSTALL}" "InstallLocation" "$INSTDIR\" WriteRegStr HKLM "${REG_UNINSTALL}" "InstallLocation" "$INSTDIR\"




SetOutPath "$INSTDIR" SetOutPath "$INSTDIR"
#for i in $(ls -1d * | grep "/" | tr -d "/"); do echo file /r $i ; done to automate #for i in $(ls -1d * | grep "/" | tr -d "/"); do echo file /r $i ; done to automate
file /r bin file /r bin
file /r lib file /r lib
file /r share file /r share


CreateDirectory "$SMPROGRAMS\Opa" CreateDirectory "$SMPROGRAMS\Opa"
CreateShortCut "$SMPROGRAMS\Opa\opa.lnk" "$INSTDIR\bin\opa.bat" CreateShortCut "$SMPROGRAMS\Opa\opa.lnk" "$INSTDIR\bin\opa.bat"
CreateShortCut "$SMPROGRAMS\Opa\post_install.lnk" "$INSTDIR\share\opa\post_install.cmd" CreateShortCut "$SMPROGRAMS\Opa\post_install.lnk" "$INSTDIR\share\opa\post_install.cmd"
CreateShortCut "$SMPROGRAMS\Opa\README.lnk" "$INSTDIR\share\opa\READMEWIN.txt" CreateShortCut "$SMPROGRAMS\Opa\README.lnk" "$INSTDIR\share\opa\READMEWIN.txt"




writeUninstaller $INSTDIR\bin\uninstall\Uninstall.exe writeUninstaller $INSTDIR\bin\uninstall\Uninstall.exe




Push 1 ; prefix Push 1 ; prefix
Push "$INSTDIR\bin" Push "$INSTDIR\bin"
Call SetPathVar Call SetPathVar


!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
!define env_hku 'HKU ".DEFAULT\Environment"' !define env_hku 'HKU ".DEFAULT\Environment"'
!define env_hkcu 'HKCU "Environment"' !define env_hkcu 'HKCU "Environment"'
WriteRegExpandStr ${env_hklm} "OPABASEDIR" "$INSTDIR" WriteRegExpandStr ${env_hklm} "OPABASEDIR" "$INSTDIR"
ReadRegStr $R0 ${env_hkcu} "NODE_PATH" ReadRegStr $R0 ${env_hkcu} "NODE_PATH"
WriteRegExpandStr ${env_hkcu} "NODE_PATH" "$R0;%USERPROFILE%\AppData\Roaming\npm\node_modules;$INSTDIR\lib\opa\stdlib;$INSTDIR\lib\opa\stdlib\stdlib.qmljs;$INSTDIR\lib\opa\static" WriteRegExpandStr ${env_hkcu} "NODE_PATH" "$R0;%USERPROFILE%\AppData\Roaming\npm\node_modules;$INSTDIR\lib\opa\stdlib;$INSTDIR\lib\opa\stdlib\stdlib.qmljs;$INSTDIR\lib\opa\static"


# .js are launchable # .js are launchable
ReadRegStr $R0 ${env_hklm} "PATHEXT" ReadRegStr $R0 ${env_hklm} "PATHEXT"
WriteRegExpandStr ${env_hklm} "PATHEXT" "$R0;.JS" WriteRegExpandStr ${env_hklm} "PATHEXT" "$R0;.JS"
# using node # using node
# AppAssocReg::SetAppAsDefault "node.exe" assoc_name type # AppAssocReg::SetAppAsDefault "node.exe" assoc_name type
# Pop $Var # Pop $Var


SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000


SectionEnd SectionEnd


#LangString MsgEx ${LANG_ENGLISH} "OPA Examples" #LangString MsgEx ${LANG_ENGLISH} "OPA Examples"
#LangString MsgEx ${LANG_FRENCH} "Exemples OPA" #LangString MsgEx ${LANG_FRENCH} "Exemples OPA"


#Section $(MsgEx) #Section $(MsgEx)
#SetOutPath "$INSTDIR" #SetOutPath "$INSTDIR"
#file /r examples #file /r examples
#SectionEnd #SectionEnd




section "Uninstall" section "Uninstall"


ReadRegStr $0 HKLM "${REG_UNINSTALL}" "InstallSource" ReadRegStr $0 HKLM "${REG_UNINSTALL}" "InstallSource"
DeleteRegKey /ifempty HKLM "${REG_UNINSTALL}" DeleteRegKey /ifempty HKLM "${REG_UNINSTALL}"


Push 0 ; remove Push 0 ; remove
Push "$INSTDIR\bin" Push "$INSTDIR\bin"
Call Un.SetPathVar Call Un.SetPathVar


# now delete installed files # now delete installed files
# for i in $(ls -1d * | grep "/" | tr -d "/"); do echo RMDir /r $i ; done TO AUTOMATE # for i in $(ls -1d * | grep "/" | tr -d "/"); do echo RMDir /r $i ; done TO AUTOMATE
RMDir /r $0\bin RMDir /r $0\bin
RMDir /r $0\lib RMDir /r $0\lib
RMDir /r $0\share RMDir /r $0\share
RMDir $0 RMDir $0


RMDir /r "$SMPROGRAMS\Opa" RMDir /r "$SMPROGRAMS\Opa"


sectionEnd sectionEnd

0 comments on commit fa68d6b

Please sign in to comment.