; $VER: Install SoloTrek II V1.03 19/09/96 by C. Edward Stewart

(message "\n\n\nSoloTrek II\n\nCopyright 1996\n\nInstall SoloTrek II?")

(message "\n\n\n\n\nFirst, the system files will be copied\nto the appropriate directories.")

(set font_dir
 (askdir
  (prompt "Where would you like the Fonts installed?")
  (help @askdir-help)
  (default "FONTS:")
  (newpath)
 )
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Program:Fonts/")
 (dest font_dir)
 (all)
)
        
(set lib_dir
 (askdir
  (prompt "Where would you like the Library installed?")
  (help @askdir-help)
  (default "LIBS:")
  (newpath)
 )
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Program:Libs/")
 (dest lib_dir)
 (all)
)

(message "\n\n\n\n\nNext, the documentation files will be copied.")
        
(set doc_dir
 (askdir
  (prompt "Where would you like the documentation installed?")
  (help @askdir-help)
  (default "DOCS:")
  (newpath)
 )
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Program:Docs/")
 (dest doc_dir)
 (all)
 (optional)
)

(message "\n\n\n\n\nNow, the game will be installed.")
        
(set game_dir
 (askdir
  (prompt "Where would you like the game installed?")
  (help @askdir-help)
  (default "GAMES:SoloTrekII")
  (newpath)
 )
)

(set @default-dest game_dir)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Program:mod.DeepSpace9") 
 (dest game_dir)
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Program:ModemTrek.16.hr") 
 (dest game_dir)
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Program:SoloTrekII") 
 (dest game_dir)
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Program:SoloTrekII.info") 
 (dest game_dir)
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Program:ModemTrek.HSL") 
 (dest game_dir)
)
        
(copyfiles
 (help @copyfiles-help)
 (source "MT-Data:ModemTrek.SND")
 (dest game_dir)
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Data:ModemTrek.GFX")
 (dest game_dir)
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Data:M-Trek.SND")
 (dest game_dir)
)

(copyfiles
 (help @copyfiles-help)
 (source "MT-Data:M-Trek.GFX")
 (dest game_dir)
)
