home *** CD-ROM | disk | FTP | other *** search
- ; APrint-Installerscript 30.10.94 © by PackMAN
-
- (set #notV37
- (cat "» APrint « benötigt OS2 (V37.175) oder höher..."))
-
- (set #msg
- (cat "\n\n"
- " » APrint « Installer script.\n\n"
- "Dieses Script installiert » APrint V2.18 « auf Ihrem Amiga.\n\n"
- "APrint © 1993-1994 Falk Zühlsdorff\n"
- "All rights reserved."))
-
- (set #0
- (cat "Ziellaufwerk auswählen..."))
- (set #1
- (cat "Verzeichnis: APrint anlegen ?"))
-
- ;=============================================================================
- ; OS2 ?
-
- (if (< (/ (getversion) 65536) 37)
- (
- (abort #notV37)
- ))
-
- ;=============================================================================
-
- (message #msg)
- (welcome)
-
- (set name
- (askdir
- (prompt "\n" #0)
- (help @askdir-help)
- (default "SYS:")
- )
- )
- (makedir (tackon name "APrint")
- (prompt "\n\n\n\n\n" #1)
- (help "Ist bei Erstinstallation sinnvoll")
- (infos)
- (confirm)
- )
- (copyfiles
- (prompt "APrint Hauptdatei")
- (help "Die Datei ist wohl nötig !!")
- (source ":APrint/APrint")
- (dest (tackon name "APrint"))
- (infos)
- (confirm)
- )
- (copyfiles
- (prompt "APrint Dokumentation")
- (help "Würde ich auch installieren...")
- (source ":APrint/APrint.DOK")
- (dest (tackon name "APrint"))
- (infos)
- (confirm)
- )
- (copyfiles
- (prompt "Beispieladressen von APrint")
- (help "Sind auch einige interessante Adressen darin...")
- (source ":APrint/Bsp.ap")
- (dest (tackon name "APrint"))
- (infos)
- (confirm)
- )
- (copyfiles
- (prompt "PURITY-Pascal-PD-Serie INTERESSANT !!!!!")
- (help "the best of PASCAL...")
- (source ":APrint/PURITY-PD")
- (dest (tackon name "APrint"))
- (infos)
- (confirm)
- )
- (copyfiles
- (prompt "Reqtools.library installieren ?")
- (help "Zum Start von APrint nötig...")
- (source ":APrint/Libs/reqtools.library")
- (dest "Libs:")
- (confirm)
- )
- (copyfiles
- (prompt "Textanzeiger ZMore")
- (help "Installieren oder Defaulttools der Icons ändern...")
- (source ":APrint/C/ZMore")
- (dest "C:" )
- (confirm)
- )