images/genicons.sh
changeset 2238 a01a3ed1af2c
parent 533 25437efb7ae4
child 3569 419f17564583
--- 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
+