home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / midi / Sequencers / B+P_Demo_2.5 / Install_Library < prev    next >
Text File  |  1994-12-19  |  1KB  |  45 lines

  1. ;
  2. ; Install the BlueRibbon.library in the system
  3. ;
  4. ; Copy it to libs: or a user chosen directory
  5. ;
  6.  
  7. (message "\nThis will install the BlueRibbon.library permanently "
  8.          "on your system. Bars & Pipes Pro and Media Madness Player "
  9.          "use this library. "
  10.          "If you don't use these programs frequently, running the "
  11.          "clickme.first at the top level of the CD-ROM will make the "
  12.          "library temporarily available to the programs (i. e. until the "
  13.          "next reboot).\n"
  14.          "If you plan to use these programs more frequently, it is "
  15.          "recommended that you run this script and install the library "
  16.          "on your hard disk.\n\nSee also the Readme.first file!"
  17. )
  18.  
  19. (complete 25)
  20.  
  21. (copylib
  22.   (prompt "Copy BlueRibbon.library")
  23.   (help "\n The BlueRibbon.library will be copied to the specified "
  24.         "directory.")
  25.   (source "libs/BlueRibbon.library")
  26.   (dest
  27.     (set @default-dest 
  28.       (askdir
  29.         (prompt "Where do you want the BlueRibbon.library copied to?")
  30.         (help "\nSpecify the directory where you want the BlueRibbon.library "
  31.               "copied to. Usually this will be the LIBS: directory or "
  32.               "another directory added to LIBS: with an Assign ADD "
  33.               "command.\n\n"
  34.               @copylib-help
  35.         )
  36.         (default "LIBS:")
  37.         (disk)
  38.       )
  39.     )
  40.   )
  41.   (confirm)
  42. )
  43.  
  44. (complete 100)
  45.