home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 3
/
TheARMClub_PDCD3.iso
/
hensa
/
maths
/
plplot
/
plplot_2
/
zipup
< prev
Wrap
Text File
|
1994-07-29
|
562b
|
23 lines
#!/bin/sh
#
# File: zipup
# Usage: zipup
#
# Builds zip archive of plplot files for distribution.
# No binary or CVS files should be included.
# Build archive from parent directory. It must also be unpacked from there.
pldir="`basename $PWD`"
zipfile=${pldir}
cd ..
# Store files, leaving out contents of certain directories as well as all
# CVS-related junk.
zip ${zipfile} ${pldir}/lib/*.fnt ${pldir}/lib/*.map \
${pldir}/tmp/.dummy ${pldir}/private/.dummy
zip -ru ${zipfile} ${pldir}/* \
-x ${pldir}/tmp ${pldir}/lib ${pldir}/private "*/CVS/*" "*~"