home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / e / GTXConv.lha / GTXConv / Install < prev    next >
Text File  |  1997-02-11  |  1KB  |  47 lines

  1. ; $VER: GTXConv Installer 1.0 (10.02.96)
  2. ; ©1997 Bugada Andrea
  3.  
  4. echo ""
  5. echo "                 GTXConv 1.4 Installation Script"
  6. echo "                    written by Bugada Andrea"
  7. echo ""
  8. echo "Welcome in the GTXConv installation script. This script will copy"
  9. echo "all needed files in the right directories."
  10. echo ""
  11. ask  "Are you sure to want to install GTXConv? (Y/N)"
  12. if WARN
  13.    echo "Copying libraries..."
  14.    echo "   ReqTools.library...    " NOLINE
  15.    if not exists LIBS:reqtools.library
  16.       copy libs/reqtools.library LIBS: QUIET
  17.       echo "installed."
  18.    else
  19.       echo "already installed."
  20.    endif
  21.    echo "   PowerPacker.library... " NOLINE
  22.    if not exists LIBS:powerpacker.library
  23.       copy libs/powerpacker.library LIBS: QUIET
  24.       echo "installed."
  25.    else
  26.       echo "already installed."
  27.    endif
  28.    echo "Copying module..." NOLINE
  29.    if not exists EMODULES:
  30.       echo "error!!"
  31.       echo "   Could not find EMODULES: directory."
  32.       echo "   Please assign EMODULES: before starting this script."
  33.       echo "Script aborted."
  34.    else
  35.        copy modules/boopsi.m EMODULES: QUIET
  36.        echo "done."
  37.        echo "Removing unused stuff..." NOLINE
  38.        delete libs/#? libs modules/#? modules install install.info readme.txt readme.txt.info QUIET
  39.        echo "done."
  40.        echo ""
  41.        echo "Installation finished, now you can use GTXConv."
  42.        echo "Good programming..."
  43.    endif
  44. else
  45.    echo "Script aborted."
  46. endif
  47.