home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma58.dms / ma58.adf / superplay-lib_USR / Install_SPLib < prev    next >
Text File  |  1996-05-27  |  2KB  |  70 lines

  1. ; $VER: Install_SPLib V4.5 (27.5.96)
  2. ; © 1993-96 by Andreas R. Kleinert.
  3. ; This is the Installer Script for superplay.library V4+
  4.  
  5. (set MC68x (database "cpu"))
  6. (set @app-name "SuperPlay-Library")
  7.  
  8. ;(makedir "ENV:SuperPlay-Library")
  9. ;(makedir "ENVARC:SuperPlay-Library")
  10.  
  11. (copylib
  12.   (prompt "Installing superplay.library to LIBS: ...")
  13.   (help @copylib-help)
  14.   (source "libs/superplay.library")
  15.   (set splibdir
  16.               (askdir
  17.                      (prompt "Library Path")
  18.                      (help @askdir-help)
  19.                      (newpath)
  20.                      (default "LIBS:")
  21.               )
  22.   )
  23.   (dest splibdir)
  24. )
  25.  
  26. ;(makedir "SYS:locale")
  27. ;(makedir "SYS:locale/catalogs")
  28.  
  29. ;(copyfiles
  30. ;  (prompt "Installing OS 2.1+ catalog files ...")
  31. ;  (help @copyfiles-help)
  32. ;  (source "locale/catalogs")
  33. ;  (set spcatdir
  34. ;              (askdir
  35. ;                     (prompt "Catalog Path")
  36. ;                     (help @askdir-help)
  37. ;                     (newpath)
  38. ;                     (default "SYS:locale/Catalogs")
  39. ;              )
  40. ;  )
  41. ;  (dest spcatdir)
  42. ;  (all)
  43. ;)
  44.  
  45. (set spobjectdir   (tackon splibdir "spobjects"))
  46. (makedir spobjectdir)
  47.  
  48. (copyfiles
  49.   (prompt "Installing spobjects to LIBS:spobjects ...")
  50.   (help @copyfiles-help)
  51.   (source "libs/spobjects")
  52.   (dest (tackon splibdir "spobjects"))
  53.   (pattern "#?")
  54.   (confirm)
  55.   (files)
  56. )
  57.  
  58. (if (>= MC68x 68020)
  59.   (
  60.     (copyfiles
  61.       (prompt "Installing special 68020+ versions of some spobjects");
  62.       (help @copyfiles-help)
  63.       (source "libs/68030")
  64.       (dest splibdir)
  65.       (confirm)
  66.       (all)
  67.     )
  68.   )
  69. )
  70.