home *** CD-ROM | disk | FTP | other *** search
/ Más de 2,500 Juegos / CD1.iso / ZIPDAT / 0601 / 0601.ZIP / MANIFEST < prev    next >
Encoding:
Text File  |  1998-04-05  |  973 b   |  49 lines

  1.  
  2. defaults
  3.   # The name of the program being installed.
  4.   $name = "Wander v1.0"
  5.   
  6.   # Defaults - can be overridden by the user.
  7.   $dstdir = c:\games\wander
  8.   $group = "Games"
  9.   $cleanup = no
  10. end
  11.  
  12. install
  13.   # Files to install, and where.  (defaults to $dstdir)
  14.   copy manifest
  15.   copy readme
  16.   copy wander.exe
  17.   copy wndtutor.exe
  18.   copy sdn.id
  19.   copy wnd.krz
  20.   copy high.scr
  21.   copy register.exe
  22.   copy register.hlp
  23.   copy install.exe
  24.  
  25.   copy screens.exe $dstdir
  26.   run $dstdir\screens.exe -d
  27.   
  28.   copy tutor.exe $dstdir
  29.   run $dstdir\tutor.exe -d
  30.  
  31.   copy soln.exe $dstdir
  32.   run $dstdir\soln.exe -d
  33.  
  34.   copy snd.exe $dstdir
  35.   run $dstdir\snd.exe -d
  36.  
  37.   mkdir $dstdir\save
  38.   
  39.   # Icons to make (if the user wants), in the group they choose.
  40.   icon Wander            $dstdir\wander.exe
  41.   icon "Wander Tutor"    $dstdir\wndtutor.exe
  42.  
  43.   del $dstdir\screens.exe
  44.   del $dstdir\tutor.exe
  45.   del $dstdir\soln.exe
  46.   del $dstdir\snd.exe
  47. end
  48.  
  49.