home *** CD-ROM | disk | FTP | other *** search
-
- (set @app-name "Protracker3.34")
- (set @language "deutsch")
- (set @abort-button "Abort Installation")
- (set @error-msg "Error!")
- (set @pretend 0)
- (set @special-msg "Fatal Error!")
- (set @user-level 2)
- (set default_drive (if (exists "SYS:" (noreq))
- "SYS"
- (cat (getdevice "C:") ":")))
- (set @default-dest default_drive)
-
- (welcome "Welcome to the Install from Protrackers 3.34 for Amiga-PC's")
- (set Ok 0)
- (complete 0)
-
- (transcript "Protracker 3.34")
- (if
- (NOT (>= (/ (getversion) 65536) 37))
- (abort "Protracker 3.34 needs Kickstart =>2.0!")
- )
- ;***************************************************************************************
- ;* Disk 1 *
- ;***************************************************************************************
- (set source_wb ("ProTracker3.34:"))
- (set disk_1 ("ProTracker3.34"))
-
- (askdisk
- (prompt "\n\nPlease insert Install Disk 1 in any Drive.\n"
- "It is labeled with `Protracker 3.34`.\n")
- (help "To ensure an correct Installation, you must have"
- "booted from your Hard Disk and must have inserted"
- "your Protracker V3.34 Disk in any Disk Drive.\n")
- (dest disk_1)
- )
- (set target_dir (getassign "C" "a"))
- (set target_dir
- (askdir
- (prompt
- "Please choose the Harddisk or Drawer who should\n "
- "Protracker V3.34 be installed.1 MB Disk Space is\n"
- "needed for all applications. An new drawer named\n"
- "'Protracker' would created by installation.\n")
- (help "On the choosen path an new drawer named 'Protracker' would be created."
- "By everly File you can choose before copying, if you need this.")
- (default "SYS:Music")
- (disk)
- )
- )
- (set targetdir (tackon target_dir "ProTracker"))
- (if (<> (exists targetdir) 2) (makedir targetdir ))
-
- (copyfiles
- (prompt "Installation Of Main Program")
- (help "Installs the protracker main program on your hard disk. An optimized 68030er version for faster Amigas aviable. "
- "If you use an Amiga 500/600, A1000 or an basic A2000, choose the 68000er version, "
- "all others can use the 68030 optimised ProTracker. They are already A1200-clean.\n")
- (source "ProTracker3.34:")
- (dest targetdir)
- (pattern "ProTracker_0#?")
- (infos)
- (confirm)
- (optional nofail askuser)
- )
-
- (complete 30)
- (copyfiles
- (prompt "Copying helpfiles to S:")
- (help "\n Copy of the follow files to S:\n\n\n"
- " PT.Help = Helpfile for Online-Help \n"
- " PT.Config-00 = Basic Configuration \n"
- " PLST = PLST Samplelist \n"
- " pt.keyboard = german keyboard driver \n")
- (source "ProTracker3.34:S")
- (dest "S:")
- (pattern "p#?")
- (confirm)
- (infos)
- (optional nofail askuser)
- )
- (complete 40)
-
- (copyfiles
- (prompt "Install of packer libraries (pp V36.10 +xpk2.4")
- (help "If not already here, powerpacker.library is needed "
- "for the correct decrunching of packed MODs and Samples "
- "and should be installed. If you wish to use additonal "
- "xpk sublibraries please use PD-Channels.\n")
- (source "Protracker3.34:Libs")
- (dest "LIBS:")
- (pattern "#?")
- (infos)
- (confirm)
- (optional nofail askuser)
- )
- (complete 45)
-
- (set targetdir (tackon target_dir "ProTracker"))
- (copyfiles
- (prompt "Installation of the User Guides")
- (help "Additionaly for the Online-Help you should \n"
- "also install these AmigaGuide Files. They\n"
- "are contain many additionaly Infos over En-\n"
- "hacements, history and usage from Protracker")
- (source "Protracker3.34:")
- (dest targetdir)
- (pattern "#?.guide")
- (infos)
- (confirm)
- (optional nofail askuser)
- )
- (complete 66)
-
- (set targetdir (tackon target_dir "Protracker/modules"))
- (if (<> (exists targetdir) 2) (makedir targetdir ))
- (copyfiles
- (prompt "Installation of the demo music")
- (help "\n\nIf you need an example from an great musican, you "
- "should also install this music module.")
- (source "Protracker3.34:modules")
- (dest targetdir)
- (pattern "mod#?")
- (infos)
- (confirm)
- (optional nofail askuser)
- )
- (complete 80)
-
- (set targetdir (tackon target_dir "Protracker/Support"))
- (if (<> (exists targetdir) 2) (makedir targetdir ))
- (copyfiles
- (prompt "Installation of the Supportfiles")
- (help "\n\nThis drawer contains additionaly documentations:\n"
- "and the readme's from the authors of protracker \n")
- (source "Protracker3.34:Support")
- (dest targetdir)
- (pattern "#?")
- (infos)
- (confirm)
- (optional nofail askuser)
- )
- (complete 95)
-
- (set targetdir (tackon target_dir "Protracker/Sources"))
- (if (<> (exists targetdir) 2) (makedir targetdir ))
- (copyfiles
- (prompt "Installation of support sources")
- (help "\n\n\n Drawer for programmers: \n"
- "contains some ASM sources and the newest play-routines ...\n")
- (source "Protracker3.34:Sources")
- (dest targetdir)
- (pattern "#?")
- (infos)
- (confirm)
- (optional nofail askuser)
- )
- (complete 100)
-
- (exit "Installation successful finished")
-