; $VER: Install_SuperView.script V2.0 (26.2.94)
; © 1993-94 by Andreas R. Kleinert.
; This is the Installer Script for SuperView

(copyfiles
  (prompt "Installing SuperView now. Libraries have to be installed separately.")
  (help @copyfiles-help)
  (source ":SuperView")
  (set svcomdir
	      (askdir
		     (prompt "Select path to install SuperView to")
		     (help @askdir-help)
		     (newpath)
		     (default "SYS:SuperView")
	      )
  )
  (dest svcomdir)
  (all)
  (confirm)
)

(copyfiles
  (prompt "Installing Catalog-Files für OS V2.1+ Code localization.")
  (help @copyfiles-help)
  (source ":SuperView/locale/catalogs")
  (set svcomdir
	      (askdir
		     (prompt "Select path to install Catalogs to")
		     (help @askdir-help)
		     (newpath)
		     (default "SYS:locale/Catalogs")
	      )
  )
  (dest svcomdir)
  (all)
  (confirm)
)



