home *** CD-ROM | disk | FTP | other *** search
-
- defaults
- # The name of the program being installed.
- $name = "Wander v1.0"
-
- # Defaults - can be overridden by the user.
- $dstdir = c:\games\wander
- $group = "Games"
- $cleanup = no
- end
-
- install
- # Files to install, and where. (defaults to $dstdir)
- copy manifest
- copy readme
- copy wander.exe
- copy wndtutor.exe
- copy sdn.id
- copy wnd.krz
- copy high.scr
- copy register.exe
- copy register.hlp
- copy install.exe
-
- copy screens.exe $dstdir
- run $dstdir\screens.exe -d
-
- copy tutor.exe $dstdir
- run $dstdir\tutor.exe -d
-
- copy soln.exe $dstdir
- run $dstdir\soln.exe -d
-
- copy snd.exe $dstdir
- run $dstdir\snd.exe -d
-
- mkdir $dstdir\save
-
- # Icons to make (if the user wants), in the group they choose.
- icon Wander $dstdir\wander.exe
- icon "Wander Tutor" $dstdir\wndtutor.exe
-
- del $dstdir\screens.exe
- del $dstdir\tutor.exe
- del $dstdir\soln.exe
- del $dstdir\snd.exe
- end
-
-