home *** CD-ROM | disk | FTP | other *** search
- ; $VER: Install_SPLib V4.5 (27.5.96)
- ; © 1993-96 by Andreas R. Kleinert.
- ; This is the Installer Script for superplay.library V4+
-
- (set MC68x (database "cpu"))
- (set @app-name "SuperPlay-Library")
-
- ;(makedir "ENV:SuperPlay-Library")
- ;(makedir "ENVARC:SuperPlay-Library")
-
- (copylib
- (prompt "Installing superplay.library to LIBS: ...")
- (help @copylib-help)
- (source "libs/superplay.library")
- (set splibdir
- (askdir
- (prompt "Library Path")
- (help @askdir-help)
- (newpath)
- (default "LIBS:")
- )
- )
- (dest splibdir)
- )
-
- ;(makedir "SYS:locale")
- ;(makedir "SYS:locale/catalogs")
-
- ;(copyfiles
- ; (prompt "Installing OS 2.1+ catalog files ...")
- ; (help @copyfiles-help)
- ; (source "locale/catalogs")
- ; (set spcatdir
- ; (askdir
- ; (prompt "Catalog Path")
- ; (help @askdir-help)
- ; (newpath)
- ; (default "SYS:locale/Catalogs")
- ; )
- ; )
- ; (dest spcatdir)
- ; (all)
- ;)
-
- (set spobjectdir (tackon splibdir "spobjects"))
- (makedir spobjectdir)
-
- (copyfiles
- (prompt "Installing spobjects to LIBS:spobjects ...")
- (help @copyfiles-help)
- (source "libs/spobjects")
- (dest (tackon splibdir "spobjects"))
- (pattern "#?")
- (confirm)
- (files)
- )
-
- (if (>= MC68x 68020)
- (
- (copyfiles
- (prompt "Installing special 68020+ versions of some spobjects");
- (help @copyfiles-help)
- (source "libs/68030")
- (dest splibdir)
- (confirm)
- (all)
- )
- )
- )
-