Rev | Line | |
---|
[54] | 1 | # $Id$
|
---|
| 2 |
|
---|
| 3 | Name "Tewi HTTPd"
|
---|
| 4 | OutFile "install.exe"
|
---|
| 5 | InstallDir "C:\Tewi"
|
---|
| 6 | Icon "tewi.ico"
|
---|
| 7 | LicenseData ../LICENSE
|
---|
| 8 | Page license
|
---|
| 9 | Page instfiles
|
---|
| 10 | UninstPage uninstConfirm
|
---|
| 11 | UninstPage instfiles
|
---|
| 12 | Section
|
---|
| 13 | CreateDirectory "$INSTDIR\etc"
|
---|
| 14 | CreateDirectory "$INSTDIR\www"
|
---|
| 15 | CreateDirectory "$INSTDIR\bin"
|
---|
| 16 | SetOutPath "$INSTDIR\bin"
|
---|
| 17 | File "tewi.exe"
|
---|
| 18 | SetOutPath "$INSTDIR\etc"
|
---|
| 19 | File /oname=tewi.conf "../example-win.conf"
|
---|
| 20 | SetOutPath "$INSTDIR\www"
|
---|
| 21 | File /oname=index.html "../itworks.html"
|
---|
| 22 |
|
---|
| 23 | CreateDirectory "$SMPROGRAMS\Tewi HTTPd"
|
---|
| 24 | CreateShortcut "$SMPROGRAMS\Tewi HTTPd\Start Tewi HTTPd.lnk" "$INSTDIR\bin\tewi.exe" ""
|
---|
| 25 | CreateShortcut "$SMPROGRAMS\Tewi HTTPd\Start Tewi HTTPd (verbose).lnk" "$INSTDIR\bin\tewi.exe" "-v"
|
---|
| 26 | CreateShortcut "$SMPROGRAMS\Tewi HTTPd\Uninstall Tewi HTTPd.lnk" "$INSTDIR\uninstall.exe" ""
|
---|
| 27 |
|
---|
| 28 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tewi HTTPd" "DisplayName" "Tewi HTTPd"
|
---|
| 29 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tewi HTTPd" "UninstallString" '"$INSTDIR\uninstall.exe"'
|
---|
| 30 |
|
---|
| 31 | WriteUninstaller "$INSTDIR\uninstall.exe"
|
---|
| 32 | SectionEnd
|
---|
| 33 |
|
---|
| 34 | Section "Uninstall"
|
---|
| 35 | RMDir /r "$INSTDIR"
|
---|
| 36 | RMDir /r "$SMPROGRAMS\Tewi HTTPd"
|
---|
| 37 |
|
---|
| 38 | DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tewi HTTPd"
|
---|
| 39 | SectionEnd
|
---|
Note:
See
TracBrowser
for help on using the repository browser.