source: git/lib/icons/png2winicon @ a7d4233

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since a7d4233 was 08be670, checked in by Olly Betts <olly@…>, 9 years ago

lib/icons/png2winicon: Clean up - use set -e, create temporary files
in current directory, and quote filenames.

  • Property mode set to 100755
File size: 240 bytes
Line 
1#!/bin/sh
2set -e
3t=.tmp.$$
4pngtopnm "$1" > "$t.pnm"
5pngtopnm -alpha "$1" | pgmtopbm -threshold > "$t.pbm"
6pnmcomp -alpha="$t.pbm" "$t.pnm" "$t.pbm" "$t.2.pnm"
7ppmtowinicon -andppms "$t.2.pnm" "$t.pbm" > "$2"
8rm "$t.pnm" "$t.pbm" "$t.2.pnm"
Note: See TracBrowser for help on using the repository browser.