render-icons.sh revision 91fd51e65f2a931160717c835edf34fbf79d0ccf
# (c) 2009 Krzysztof KosiĆski
# Licensed under GNU GPL; see the file COPYING for details
#
# This script renders PNG icons from their SVG versions.
IFS=$'\0'
case $1 in
# use shell mode to render discrete icons
# right now doesn't work because of Inkscape bugs
| sed -e 's|\.svg$|.png|' \
;;
# use shell mode to render icons extracted from icons.svg
# right now doesn't work because of Inkscape bugs
;;
# use rsvg to render discrete icons
rsvg|*)
| sed -e 's|\.svg$|.png|' \
;;
esac
fi
done