home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Utilities / 1TouchMac25 / install < prev    next >
Text File  |  1979-12-31  |  1KB  |  46 lines

  1. ; OneTouchMac Installer Script
  2.  
  3. (message "OneTouchMac command will be copied to your C drawer.\n\n Please don't move it from this location as the program will not work and your startup sequence won't be executed normaly")
  4. (copyfiles
  5.         (help " ")
  6.         (source "c/OneTouchMac")
  7.         (dest "C:")
  8. )
  9.  
  10. (set Prefs_Target
  11.             ( askdir
  12.                     (prompt "Where do you want to copy the prefs program ?")
  13.                     (help "it will copy OneTouchMac_Prefs into the directory you'll choose")
  14.                     (default "Sys:Prefs")
  15.                     (newpath)
  16.             )
  17. )
  18.  
  19. (copyfiles
  20.         (prompt "Copy Prefs program to " Prefs_Target)
  21.         (Source "prefs/OneTouchMac_Prefs")
  22.         (help "OneTouchMac Prefs alows easy configuration of OneTouchMac parameters. But you can skip it's copy as it's not necessary to make OneTouchMac running")
  23.         (dest Prefs_Target)
  24.         (infos)
  25.         (confirm 1)
  26. )
  27.  
  28. (set Guide_Target
  29.             ( askdir
  30.                     (prompt "where do you want to copy the Guide file ?")
  31.                     (help "the Guide file explain how works OneTouchMac")
  32.                     (default "Help:")
  33.                     (newpath)
  34.             )
  35. )
  36.  
  37. (copyfiles
  38.         (prompt "copy OneTouchMac.guide file to %s" Guide_Target)
  39.         (source "OneTouchMac.guide")
  40.         (dest Guide_Target)
  41.         (infos)
  42.         
  43. )
  44. (set @default-dest (cat "C: ," Prefs_Target " and " Guide_Target))
  45.  
  46.