home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Database / SBP130I.DMS / in.adf / InstallSB < prev    next >
Encoding:
Text File  |  1994-04-11  |  12.9 KB  |  378 lines

  1. ; this is an install script for SBase4 Professional
  2. ; the following two tooltypes should be on the invokation project icon:
  3. ;         MINUSER=AVERAGE
  4. ;         APPNAME=SBase4pro
  5. ;         PRETEND=FALSE
  6. ;
  7. ;
  8.  
  9.  
  10. (copyfiles
  11.    (source "Install_SBase4pro:lharc")
  12.    (dest "ram:")
  13.    (infos)
  14. )
  15. (copyfiles
  16.    (source "Install_SBase4pro:Disk.info")
  17.    (dest "ram:")
  18.    (infos)
  19. )
  20. (copyfiles
  21.    (source "Install_SBase4pro:SBase4.sort")
  22.    (dest "s:")
  23. )
  24.  
  25. (onerror
  26.    (delete "ram:lharc" (safe))
  27.    (delete "ram:Disk.info" (safe))
  28. )
  29.  
  30. (set installlevel 3)
  31.  
  32. (if (IN installlevel 0)
  33.    (
  34.       (set length_ok 1)
  35.  
  36.       (set serialno "")
  37.  
  38.       (while length_ok
  39.          (set serialno
  40.             (askstring
  41.                (prompt "Please enter your serial no. which is printed on"
  42.                        " your installation disk.")
  43.                (help @askstring-help)
  44.                (default serialno)
  45.             )
  46.          )
  47.          (if (= (strlen serialno) 8)
  48.             (set length_ok 0)
  49.             (message "Improper serial no.")
  50.          )
  51.       )
  52.  
  53.       (set length_ok 1)
  54.  
  55.       (set name "")
  56.  
  57.       (while length_ok
  58.          (set name
  59.             (askstring
  60.                (prompt "Please enter your name.  This must be at least 6"
  61.                        " characters long, and less than 40 characters long.")
  62.                (help @askstring-help)
  63.                (default name)
  64.             )
  65.          )
  66.          (if (< (strlen name) 6)
  67.             (message "name must be at least 6 characters long")
  68.             (if (> (strlen name) 39)
  69.                (message "name must be less than 40 characters long")
  70.                (set length_ok 0)
  71.             )
  72.          )
  73.       )
  74.  
  75.       (set length_ok 1)
  76.  
  77.       (set org "")
  78.  
  79.       (while length_ok
  80.          (set org
  81.             (askstring
  82.                (prompt "Please enter your organization.  This must be at least 6"
  83.                        " characters long, and less than 40 characters long.")
  84.                (help @askstring-help)
  85.                (default org)
  86.             )
  87.          )
  88.          (if (< (strlen org) 6)
  89.             (message "organization must be at least 6 characters long")
  90.             (if (> (strlen org) 39)
  91.                (message "organization must be less than 40 characters long")
  92.                (set length_ok 0)
  93.             )
  94.          )
  95.       )
  96.    )
  97. )
  98.  
  99. (set sb_install
  100.    (askbool
  101.       (prompt "Do you wish to install to Floppy or Hard Disk?")
  102.       (help "If you install to Floppy, it will generate two"
  103.             " floppys.  If you install to Hard Disk, then all files"
  104.             " will be placed in"
  105.             " one directory on your hard drive.")
  106.       (choices "Floppy" "Hard Disk")
  107.       (default 1)
  108.    )
  109. )
  110.  
  111. (if sb_install
  112.    (  ; --- floppy install **************************************
  113.       (set disk_ready 0)
  114.       (if (= installlevel 3)
  115.          (set disk_ready
  116.             (askbool
  117.                (prompt "To install to floppy disks requires two formatted"
  118.                        " floppys labeled \"SBase4pro:\", and \"SBase4:\"."
  119.                        "  If you do not have these ready"
  120.                        " then please exit this installation procedure, prepare"
  121.                        " them, and re-start the installation.")
  122.                (help "SBase4pro: will hold all program files except for"
  123.                      " the form designer.  SBase4: will be used for the"
  124.                      " form designer program and some extra examples.")
  125.                (choices "Continue" "Exit")
  126.                (default 1)
  127.             )
  128.          )
  129.       )
  130.       (if disk_ready
  131.          (
  132.             (if (IN installlevel 0)
  133.                (
  134.                   (set @default-dest "SBase4")
  135.                   (copyfiles
  136.                      (source "Install_SBase4pro:prog.lzh")
  137.                      (dest "ram:")
  138.                   )
  139.                   (copyfiles
  140.                      (source "Install_SBase4pro:registersb")
  141.                      (dest "ram:")
  142.                   )
  143.                   (askdisk
  144.                      (prompt "Please insert the diskette labeled \"SBase4pro\""
  145.                              " in any drive.")
  146.                      (help @askdisk-help)
  147.                      (dest  "SBase4pro")
  148.                   )
  149.                   (copyfiles
  150.                      (source "ram:Disk.info")
  151.                      (dest "SBase4pro:")
  152.                      (infos)
  153.                   )
  154.                   (working
  155.                              "Preparing SBase4pro disk.\n"
  156.                              "\n**********\n"
  157.                              "This could take several minutes so please be patient!\n"
  158.                              "**********"
  159.                   )
  160.  
  161.                   (if (run (cat "ram:lharc >nil: -m -n x ram:prog.lzh SBase4pro:"))
  162.                      (abort "Program files Decompression failed")
  163.                   )
  164.                   (delete "ram:prog.lzh")
  165.                   (if (run (cat "ram:registersb SBase4pro:SBase4pro \"" name "\" \"" org "\" \"" serialno "\""))
  166.                      (abort "Program Registration failed")
  167.                   )
  168.                   (delete "ram:registersb")
  169.  
  170.                   (askdisk
  171.                      (prompt "Please insert the diskette labeled \"Install...\""
  172.                              " in any drive.")
  173.                      (help @askdisk-help)
  174.                      (dest  "SBase4pro")
  175.                   )
  176.                   (copyfiles
  177.                      (source "Install_SBase4pro:printers.lzh")
  178.                      (dest "ram:")
  179.                   )
  180.                   (askdisk
  181.                      (prompt "Please insert the diskette labeled \"SBase4pro\""
  182.                              " in any drive.")
  183.                      (help @askdisk-help)
  184.                      (dest  "SBase4pro")
  185.                   )
  186.                   (if (run (cat "ram:lharc >nil: -m -n x ram:printers.lzh SBase4pro:"))
  187.                      (abort "Printer files Decompression failed")
  188.                   )
  189.                   (delete "ram:printers.lzh")
  190.  
  191.                   (askdisk
  192.                      (prompt "Please insert the diskette labeled \"Install...\""
  193.                              " in any drive.")
  194.                      (help @askdisk-help)
  195.                      (dest  "SBase4pro")
  196.                   )
  197.                   (copyfiles
  198.                      (source "Install_SBase4pro:sbfd.lzh")
  199.                      (dest "ram:")
  200.                   )
  201.                   (askdisk
  202.                      (prompt "Please insert the diskette labeled \"SBase4\""
  203.                              " in any drive.")
  204.                      (help @askdisk-help)
  205.                      (dest  "SBase4")
  206.                   )
  207.                   (copyfiles
  208.                      (source "ram:Disk.info")
  209.                      (dest "SBase4:")
  210.                      (infos)
  211.                   )
  212.                   (working
  213.                              "Preparing SBase4 form designer disk.\n"
  214.                              "\n**********\n"
  215.                              "This could take several minutes so please be patient!\n"
  216.                              "**********"
  217.                   )
  218.                   (if (run (cat "ram:lharc >nil: -m -n x ram:sbfd.lzh SBase4:"))
  219.                      (abort "Program files Decompression failed")
  220.                   )
  221.                   (delete "ram:sbfd.lzh")
  222.                )
  223.             )
  224.             (complete 50)
  225.             (if (IN installlevel 1)
  226.                (
  227.                   (askdisk
  228.                      (prompt "Please insert the diskette labeled \"Install_SBase4pro:\""
  229.                              " in any drive.")
  230.                      (help @askdisk-help)
  231.                      (dest  "Install_SBase4pro")
  232.                   )
  233.                   (copyfiles
  234.                      (source "Install_SBase4pro:examples.lzh")
  235.                      (dest "ram:")
  236.                   )
  237.                   (askdisk
  238.                      (prompt "Please insert the diskette labeled \"SBase4:\""
  239.                              " in any drive.")
  240.                      (help @askdisk-help)
  241.                      (dest  "SBase4")
  242.                   )
  243.                   (working
  244.                              "Preparing Examples.\n"
  245.                              "\n**********\n"
  246.                              "This could take several minutes so please be patient!\n"
  247.                              "**********"
  248.                   )
  249.                   (if (run (cat "ram:lharc >nil: -m -n x ram:examples.lzh SBase4:"))
  250.                      (abort "Examples files Decompression failed")
  251.                   )
  252.                   (delete "ram:examples.lzh")
  253.                )
  254.             )
  255.          )
  256.          (abort "User Request")
  257.       )
  258.    )
  259.    (  ; --- hard disk install ***********************************
  260.  
  261.  
  262.       (set sb_dest (tackon @default-dest "SBase4"))
  263.  
  264.       (set sb_dest
  265.          (askdir
  266.             (prompt "Where would you like to install SBase4pro?"
  267.             )
  268.             (help   "The suggested path is on your volume with the"
  269.                     " most available space.  If you wish it to be"
  270.                     " elsewhere, simply change the name.  If the drawer does"
  271.                     " not exist, it will be added to the indicated"
  272.                     " volume, along with an icon.  Some examples will be"
  273.                     " installed to the same location."
  274.             )
  275.             (newpath)
  276.             (default sb_dest)
  277.          )
  278.       )
  279.  
  280.       (makedir sb_dest (infos))
  281.       (makeassign "SBase4" sb_dest)
  282.       (makeassign "SBase4xx" sb_dest)
  283.  
  284.       (set @default-dest sb_dest)
  285.       (if (IN installlevel 0)
  286.          (
  287.             (copyfiles
  288.                (source "Install_SBase4pro:registersb")
  289.                (dest "ram:")
  290.             )
  291.             (working
  292.                        "Preparing SBase4 program files.\n"
  293.                        "\n**********\n"
  294.                        "This could take several minutes so please be patient!\n"
  295.                        "**********"
  296.             )
  297.             (if (run (cat "ram:lharc >nil: -m -n x Install_SBase4pro:prog.lzh SBase4xx:"))
  298.                (abort "Program files Decompression failed")
  299.             )
  300.             (delete "ram:prog.lzh")
  301.             (if (run (cat "ram:lharc >nil: -m -n x Install_SBase4pro:sbfd.lzh SBase4xx:"))
  302.                (abort "Program files Decompression failed")
  303.             )
  304.             (delete "ram:sbfd.lzh")
  305.             (if (run (cat "ram:registersb \"" (tackon sb_dest "SBase4pro") "\" \"" name "\" \"" org "\" \"" serialno "\""))
  306.                (abort "Program Registration failed")
  307.             )
  308.             (delete "ram:registersb")
  309.             (if (run (cat "ram:lharc >nil: -m -n x Install_SBase4pro:printers.lzh S:"))
  310.                (abort "Printer files Decompression failed")
  311.             )
  312.             (delete "ram:printers.lzh")
  313.  
  314.             (if (= (exists "sys:wbstartup" (noreq)) 2)
  315.                (
  316.                   (
  317.                      (textfile
  318.                         (prompt "Creating the SBase4 Assignment file in sys:WBstartup\n"
  319.                         )
  320.                         (help "This file is required to assign SBase4: to the drawer"
  321.                               " which contains SBase.  It is placed into sys:WBstartup"
  322.                               " so it will be executed when workbench is started up."
  323.                               " If you do not use workbench, then you will have to"
  324.                               " add this to your user-startup file, or do it manually."
  325.                         )
  326.                         (dest "sys:WBstartup/AssignSB")
  327.                         (append "echo \"SBase4 Assign Initialization\"\n")
  328.                         (append "assign SBase4: \"" sb_dest "\"\n")
  329.                      )
  330.                      (copyfiles
  331.                         (source "Install_SBase4pro:icons/AssignSB.info")
  332.                         (dest "sys:WBstartup")
  333.                      )
  334.                   )
  335.                )
  336.                (
  337.                   (startup "SBase4"
  338.                      (prompt "add assignment to user-startup")
  339.                      (help "This file is required to assign SBase4: to the drawer"
  340.                            " which contains SBase."
  341.                      )
  342.                      (command "assign SBase4: \"" sb_dest "\"\n")
  343.                   )
  344.                )
  345.             )
  346.          )
  347.       )
  348.       (complete 50)
  349.       (if (IN installlevel 1)
  350.          (
  351.             (askdisk
  352.                (prompt "Please insert the diskette labeled \"Install_SBase4pro:\""
  353.                        " in any drive.")
  354.                (help @askdisk-help)
  355.                (dest  "Install_SBase4pro")
  356.             )
  357.             (working
  358.                        "Preparing Examples.\n"
  359.                        "\n**********\n"
  360.                        "This could take several minutes so please be patient!\n"
  361.                        "**********"
  362.             )
  363.             (if (run (cat "ram:lharc >nil: -m -n x Install_SBase4pro:examples.lzh SBase4xx:"))
  364.                (abort "Examples Decompression failed")
  365.             )
  366.             (delete "ram:examples.lzh")
  367.          )
  368.       )
  369.    )
  370. )
  371.  
  372. (delete "ram:lharc" (safe))
  373. (makeassign "SBase4xx")
  374.  
  375. (complete 100)
  376.  
  377. (exit)
  378.