summaryrefslogtreecommitdiff
path: root/setup/mplayer.codecs.win32.nsi
blob: b469f1fbbbf3c05b3d45d049a0d7115d9f83ca90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
; Written by redxii <redxii1234@hotmail.com>
; Codecs installer for SMPlayer

;--------------------------------
;Compressor

  SetCompressor /SOLID lzma
  SetCompressorDictSize 32

;--------------------------------
;Defines

  !define PRODUCT_VERSION "20071007"

;--------------------------------
;Include Modern UI and functions

  !include MUI2.nsh

;--------------------------------
;General

  ;Name and file
  Name "MPlayer Binary Codecs ${PRODUCT_VERSION}"
  OutFile "smplayer_codecs_${PRODUCT_VERSION}.exe"

  ;Show details
  ShowInstDetails show

  ;Get installation folder from registry if available
  InstallDirRegKey HKLM "Software\SMPlayer" "Path"

  ;Vista+ XML manifest, does not affect older OSes
  RequestExecutionLevel admin

;--------------------------------
;Variables

  Var IS_ADMIN
  Var USERNAME

;--------------------------------
;Interface Settings

  !define MUI_ABORTWARNING
  !define MUI_FINISHPAGE_NOREBOOTSUPPORT
  !define MUI_WELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\orange.bmp"

  ;Installer/Uninstaller icons
  !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\orange-install.ico"

;--------------------------------
;Pages

  ;Install pages
  !insertmacro MUI_PAGE_WELCOME
  !insertmacro MUI_PAGE_DIRECTORY
  !insertmacro MUI_PAGE_INSTFILES
  !insertmacro MUI_PAGE_FINISH

;--------------------------------
; Languages

  !insertmacro MUI_LANGUAGE "English"

;--------------------------------
;Reserve Files

  ;These files should be inserted before other files in the data block
  ;Keep these lines before any File command
  ;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA)

  ReserveFile "${NSISDIR}\Plugins\UserInfo.dll"

;------------------------------------------------------------------------------------------------
;Installer Sections

;--------------------------------
; Main SMPlayer files
Section -Codecs

  Delete "$INSTDIR\mplayer\codecs\*"

  SetOutPath "$INSTDIR\mplayer\codecs"
  File "codecs\*"

  WriteRegDWORD HKLM Software\SMPlayer Installed_Codecs 0x1

SectionEnd

;--------------------------------
;Installer Functions

Function .onInit

  /* Privileges Check */
  Call CheckUserRights

  ;Check for admin (mimic old Inno Setup behavior)
  ${If} $IS_ADMIN == 0
    MessageBox MB_OK|MB_ICONSTOP "You must be logged in as an administrator when installing this program."
    Abort
  ${EndIf}

  ClearErrors
  ReadRegStr $0 HKLM Software\SMPlayer "Path"
  IfErrors 0 +2
    MessageBox MB_OK|MB_ICONEXCLAMATION "SMPlayer installation not found. You will have to manually locate your SMPlayer installation."

FunctionEnd

Function .onVerifyInstDir

  IfFileExists $INSTDIR\smplayer.exe PathGood
    Abort ; if $INSTDIR is not a smplayer directory, don't let us install there
  PathGood:

FunctionEnd

Function CheckUserRights

  ClearErrors
  UserInfo::GetName
  ${If} ${Errors}
    StrCpy $IS_ADMIN 1
    Return
  ${EndIf}

  Pop $USERNAME
  UserInfo::GetAccountType
  Pop $R0
  ${Switch} $R0
    ${Case} "Admin"
    ${Case} "Power"
      StrCpy $IS_ADMIN 1
      ${Break}
    ${Default}
      StrCpy $IS_ADMIN 0
      ${Break}
  ${EndSwitch}

FunctionEnd

;End Installer Sections
;------------------------------------------------------------------------------------------------