home *** CD-ROM | disk | FTP | other *** search
- ; $VER: FinalMacros.install 1.1 (10.02.95) by NDY's
- (IF (= @language "deutsch")
- (
- (SET kick "Sorry, Final Writer benötigt mindestens OS2.0!")
- (SET macro "Wählen Sie Ihr Final Writer Makroverzeichnis:")
- (SET macrohelp "Die Makros werden in dieses Verzeichnis installiert.")
- (SET yes "Ja")
- (SET no "Nein")
- )
- (
- (SET kick "Sorry, Final Writer needs at least OS2.0!")
- (SET macro "Choose your Final Writer macro directory:")
- (SET macrohelp "The macros will be installed to this directory.")
- (SET yes "Yes")
- (SET no "No")
- )
- )
- (IF (< (SHIFTRIGHT (GETVERSION) 16) 37) (EXIT kick))
- (SET macros "Macros")
- (SET lib1 "libs/rexxmathlib.library")
- (SET lib2 "libs/apig.library")
- (SET lib3 "libs/rexxreqtools.library")
- (SET lib4 "libs/reqtools.library")
- (SET destdr (ASKDIR (PROMPT macro) (DEFAULT @default-dest) (HELP macrohelp)))
- (IF (NOT (EXISTS destdr)) (EXIT))
- (FOREACH "libs" "#?.library"
- (
- (COPYLIB (SOURCE (TACKON "libs" @each-name)) (DEST "LIBS:"))
- )
- )
- (RUN (CAT "ENV_Locale " @language))
- (COPYFILES (SOURCE macros) (DEST destdr) (ALL))
- (EXIT)
-