home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga MA Magazine 1998 #3
/
amigamamagazinepolishissue1998.iso
/
bazy
/
aprint
/
install_aprint
< prev
next >
Wrap
Text File
|
1994-12-29
|
2KB
|
96 lines
; APrint-Installerscript 30.11.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.22 « 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)
)