; Installation script for Henry Michaels
; Copyright © 1997 by Rune Jacobsen

; Setting some useful variables:

(set @app-name "Henry Michaels")

; Main script program

(message "This installation procedure is really raw. It just copies the files from this dir over. I'll make something better, maybe.\n\nShitlips")

(complete 0)

(set Install_Path
   (askdir
      (prompt "Please indicate where the Henry directory should be created")
      (help @askdir-help)
      (default "Work:")
   )
)

(complete 50)

(set @default-dest (tackon Install_Path "Henry"))

(makedir @default-dest)

(copyfiles
   (prompt "Installing executables")
   (source "")
   (dest @default-dest)
   (all)
   (infos)
)

