home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 82 / af082sub.adf / FINALWRITER / FINAL.lzx / FinalWriter / FinalMacros / FinalMacros.install < prev    next >
Encoding:
Text File  |  1978-01-01  |  1.1 KB  |  34 lines

  1. ; $VER: FinalMacros.install 1.1 (10.02.95) by NDY's
  2. (IF (= @language "deutsch")
  3.   (
  4.     (SET kick "Sorry, Final Writer benötigt mindestens OS2.0!")
  5.     (SET macro "Wählen Sie Ihr Final Writer Makroverzeichnis:")
  6.     (SET macrohelp "Die Makros werden in dieses Verzeichnis installiert.")
  7.     (SET yes "Ja")
  8.     (SET no "Nein")
  9.   )
  10.   (
  11.     (SET kick "Sorry, Final Writer needs at least OS2.0!")
  12.     (SET macro "Choose your Final Writer macro directory:")
  13.     (SET macrohelp "The macros will be installed to this directory.")
  14.     (SET yes "Yes")
  15.     (SET no "No")
  16.   )
  17. )
  18. (IF (< (SHIFTRIGHT (GETVERSION) 16) 37) (EXIT kick))
  19. (SET macros "Macros")
  20. (SET lib1 "libs/rexxmathlib.library")
  21. (SET lib2 "libs/apig.library")
  22. (SET lib3 "libs/rexxreqtools.library")
  23. (SET lib4 "libs/reqtools.library")
  24. (SET destdr (ASKDIR (PROMPT macro) (DEFAULT @default-dest) (HELP macrohelp)))
  25. (IF (NOT (EXISTS destdr)) (EXIT))
  26. (FOREACH "libs" "#?.library"
  27.   (
  28.     (COPYLIB (SOURCE (TACKON "libs" @each-name)) (DEST "LIBS:"))
  29.   )
  30. )
  31. (RUN (CAT "ENV_Locale " @language))
  32. (COPYFILES (SOURCE macros) (DEST destdr) (ALL))
  33. (EXIT)
  34.