# a dotpup package is just a zip file
# -9 compresses it as much as possible
# output file is dotpup.pup ... rename it when the package is ready to upload
# here i'm putting a tar.gz in a zip file
# the reason dotpup files are zip files and not tar.gz files
# is that server mime settings for tar.gz files are often setup incorrectly
# mime settings for zip files are usually ok (but not always)
rm -f dotpup.pup
zip -9 dotpup.pup dotpup.sh dotpup.tar.gz md5sum.txt
This file creates the dotpup file. NOTHING needs to be changed.