home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JRUNTIME.Z / beaninfo.jar / build-jar.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1998-02-26  |  711b  |  35 lines

  1. #!/bin/sh
  2. #
  3. #       build-jar.sh
  4. #    Run this script to repackage all the separate Swing .jar files 
  5. #    into one jar file and include the BeanInfo classes and Icons. 
  6. #       
  7. #
  8.  
  9.  
  10. echo "Creating swingall.jar file in current directory"
  11.  
  12. # unjar the existing swing.jar,motif.jar, windows.jar beaninfo.jar
  13.  
  14. if [ ! -f ./swing.jar ]; then
  15.     echo "Can't find swing.jar in current directory"
  16.     exit 1
  17. fi
  18.  
  19. if [ -d ./com ]; then
  20.     echo "Please run this script from a directory that doesn't already one named \"com\""
  21.     exit 2
  22. fi
  23.  
  24.  
  25. jar xf swing.jar
  26. jar xf motif.jar
  27. jar xf windows.jar
  28. jar xf beaninfo.jar
  29.  
  30.  
  31. jar cfm swingall.jar manifest com/sun
  32.  
  33. rm -rf com 
  34. echo "Now you can import swingall.jar into a Builder App"
  35.