Added land and see areas labels
[GPXSee.git] / icons / formats / scripts / icns.sh
blob3f3a3c557d78ebfe7b5803c33a5141c4e775db9d
1 #!/bin/bash
3 while read e; do
4 IFS=":"; set $e
6 EXT=`echo $1 | tr /a-z/ /A-Z/`
7 sed -e "s/\$EXT/$EXT/" -e "s/\$COLOR/$2/" icon-template.svg > $1.svg
9 ICONSET=$1.iconset
10 mkdir $ICONSET
12 rsvg-convert -w 16 -h 16 -o "$ICONSET/icon_16x16.png" "$1.svg"
13 rsvg-convert -w 32 -h 32 -o "$ICONSET/icon_16x16@2x.png" "$1.svg"
14 cp "$ICONSET/icon_16x16@2x.png" "$ICONSET/icon_32x32.png"
15 rsvg-convert -w 64 -h 64 -o "$ICONSET/icon_32x32@2x.png" "$1.svg"
16 rsvg-convert -w 128 -h 128 -o "$ICONSET/icon_128x128.png" "$1.svg"
17 rsvg-convert -w 256 -h 256 -o "$ICONSET/icon_128x128@2x.png" "$1.svg"
18 cp "$ICONSET/icon_128x128@2x.png" "$ICONSET/icon_256x256.png"
19 rsvg-convert -w 512 -h 512 -o "$ICONSET/icon_256x256@2x.png" "$1.svg"
20 cp "$ICONSET/icon_256x256@2x.png" "$ICONSET/icon_512x512.png"
21 rsvg-convert -w 1024 -h 1024 -o "$ICONSET/icon_512x512@2x.png" "$1.svg"
23 iconutil -c icns -o $1.icns "$ICONSET"
24 rm -R "$ICONSET" $1.svg
25 done < extensions