# HG changeset patch
# User Andrey Skvortsov <andrej.skvortzov@gmail.com>
# Date 1530268811 -10800
# Node ID a01a3ed1af2cd6004ff15c3ca67c5e2a318aa231
# Parent  c5104f88a21f98395b19cc7a90a9881a476ebef8
Take plcopen_icons.svg as source of png icons as well

generate poe.ico from png images of different sizes.

diff -r c5104f88a21f -r a01a3ed1af2c images/genicons.sh
--- a/images/genicons.sh	Fri Jun 29 13:36:32 2018 +0300
+++ b/images/genicons.sh	Fri Jun 29 13:40:11 2018 +0300
@@ -1,18 +1,25 @@
-#!/bin/bash
+#!/bin/sh
 
 INKSCAPE=inkscape
 
-for i in `cat icons.svg |grep -o -e '%%[^%]*%%'|sed 's/%//g'` 
-do
- if [ $i.png -nt icons.svg ]; then
- 	echo "Skip $i"
- else
-	rm  -f $i.png
-	echo "$INKSCAPE" icons.svg -z -e $i.png -i $i
-	"$INKSCAPE" icons.svg -z -e $i.png -i $i
- fi
+for fname in `ls *.svg`; do
+    for i in `cat $fname |grep -o -e '%%[^%]*%%'|sed 's/%//g'` 
+    do
+        if [ $i.png -nt $fname ]; then
+ 	    echo "Skip $i"
+        else
+	    rm  -f $i.png
+	    echo "$INKSCAPE" $fname -z -e $i.png -i $i
+	    "$INKSCAPE" $fname -z -e $i.png -i $i
+        fi
+    done
 done
 
-cp ico24.png brz.png
-convert ico*.png brz.ico
+cp ico024.png brz.png
+convert -compress none ico*.png brz.ico
 rm -f ico*.png
+
+
+convert -compress none poeico*.png poe.ico
+rm -f poeico*.png
+