home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / maths / plplot / plplot_2 / zipup < prev   
Text File  |  1994-07-29  |  562b  |  23 lines

  1. #!/bin/sh
  2. #
  3. # File: zipup
  4. # Usage: zipup
  5. # Builds zip archive of plplot files for distribution.
  6. # No binary or CVS files should be included.
  7.  
  8. # Build archive from parent directory.  It must also be unpacked from there.
  9.  
  10. pldir="`basename $PWD`"
  11. zipfile=${pldir}
  12. cd ..
  13.  
  14. # Store files, leaving out contents of certain directories as well as all
  15. # CVS-related junk.
  16.  
  17. zip ${zipfile} ${pldir}/lib/*.fnt ${pldir}/lib/*.map \
  18.         ${pldir}/tmp/.dummy ${pldir}/private/.dummy
  19.  
  20. zip -ru ${zipfile} ${pldir}/* \
  21.     -x ${pldir}/tmp ${pldir}/lib ${pldir}/private "*/CVS/*" "*~"
  22.