home *** CD-ROM | disk | FTP | other *** search
- .K ""
- echo "This script will install some required libraries, after checking"
- echo "to see if you already have them. If so, it will check the version"
- echo "number of the installed one, and the one in this distribution, and"
- echo "give you the option of installing the one found here."
- echo ""
-
- echo "Note that arp.library is only required for AmigaDOS 1.3 or earlier."
- echo ""
-
- ask "Do you wish to continue with the installation of arp.library? [y/n]"
- if WARN
- if not EXISTS libs:arp.library
- echo "No existing library, installing libs:arp.library..."
- copy libs/arp.library libs:arp.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:arp.library
- version libs/arp.library
- echo ""
- ask "Do you wish to overwrite libs:arp.library? [y/n]"
- if WARN
- echo "Updating libs:arp.library..."
- copy libs/arp.library libs:arp.library
- else
- echo "libs:arp.library unchanged..."
- endif
- endif
- endif
-
- ask "Do you wish to continue with the installation of color.library? [y/n]"
- if WARN
- if not EXISTS libs:color.library
- echo "No existing library, installing libs:color.library..."
- copy libs/color.library libs:color.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:color.library
- version libs/color.library
- echo ""
- ask "Do you wish to overwrite libs:color.library? [y/n]"
- if WARN
- echo "Updating libs:color.library..."
- copy libs/color.library libs:color.library
- else
- echo "libs:color.library unchanged..."
- endif
- endif
- endif
-
- ask "Do you wish to continue with the installation of iff.library? [y/n]"
- if WARN
- if not EXISTS libs:iff.library
- echo "No existing library, installing libs:iff.library..."
- copy libs/iff.library libs:iff.library
- else
- echo "Examine the version numbers of each library."
- echo ""
- version libs:iff.library
- version libs/iff.library
- echo ""
- ask "Do you wish to overwrite libs:iff.library? [y/n]"
- if WARN
- echo "Updating libs:iff.library..."
- copy libs/iff.library libs:iff.library
- else
- echo "libs:iff.library unchanged..."
- endif
- endif
- endif
-
- echo "All Done. Click close gadget to get rid of window."
- endcli
-