home *** CD-ROM | disk | FTP | other *** search
- ; $VER: Install-POWER TIPS PRO =A91995 Dean Scott & Ronnie Norwood
- ; Script to install Power Tips Pro for Lightwave
- ; Written by Josh Farley
- ;**************************************************************************
-
- (set @app-name "Power Tips Pro")
-
- ;***** Get Destination Directory *****
-
- (set d
- (askdir
- (default "SYS:")
- (help "The destination you select will be the location of a new"
- " directory called PTP."
- )
- (prompt "Select the destination where a new directory named PTP will be"
- " created. The destination must have 475k of free disk space."
- )
- (disk)
- )
- )
-
- (set @execute-dir d)
-
- (run "Power_Tips_Pro:lha -x x Power_Tips_Pro:PTP.lha"
- (prompt
- (cat (cat "Extract Power Tips Pro to " d) " ?")
- )
- (confirm)
- (help "If confirmed, the installer will extract the Power Tips Pro "
- "archive to the selected destination."
- )
- )
-
- (set @default-dest d)
-
- ;***** Copy ViewTek to Utilities dir *****
-
- (copyfiles
- (prompt "Copying ViewTek.")
- (help @copyfiles-help)
- (source "Power_Tips_Pro:Viewtek")
- (dest "SYS:Utilities")
- (choices
- "VT"
- "VT.info"
- )
- (files)
- )
-
- ;***** Copy AmigaGuide & library *****
-
- (copyfiles
- (prompt "Copying AmigaGuide.")
- (help @copyfiles-help)
- (source "Power_Tips_Pro:Utilities")
- (dest "SYS:Utilities")
- (choices
- "AmigaGuide"
- )
- (files)
- )
-
- (copyfiles
- (prompt "Copying Help.Guide.")
- (help @copyfiles-help)
- (source "Power_Tips_Pro:S")
- (dest "SYS:S")
- (choices
- "Help.Guide"
- )
- (files)
- )
-
- (copylib
- (prompt "Copying AmigaGuide.library.")
- (help @copylib-help)
- (source "Power_Tips_Pro:libs/AmigaGuide.library")
- (dest "LIBS:")
- )
-
- (exit)
-