make_install_images.sh 784 B

1234567891011121314151617181920212223
  1. #!/bin/sh
  2. # Script to make the bitmap files that go into the PuTTY MSI installer.
  3. set -e
  4. # For convenience, allow this script to be run from the Windows
  5. # subdirectory as well as the top level of the source tree.
  6. if test -f installer.wxs -a ! -f putty.h -a -f ../putty.h; then
  7. cd ..
  8. fi
  9. convert -size 164x312 'gradient:blue-white' -distort SRT -90 -swirl 180 \
  10. \( icons/putty-48.png -geometry +28+24 \) -composite \
  11. \( icons/pscp-48.png -geometry +88+96 \) -composite \
  12. \( icons/puttygen-48.png -geometry +28+168 \) -composite \
  13. \( icons/pageant-48.png -geometry +88+240 \) -composite \
  14. windows/msidialog.bmp
  15. convert -size 493x58 canvas:white \
  16. \( icons/putty-48.png -geometry +440+5 \) -composite \
  17. windows/msibanner.bmp