debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
|
Last change
on this file since 7eac11e was
c33736c,
checked in by Olly Betts <olly@…>, 5 years ago
|
|
Update to work with newer inkscape
The -e option seems to have been renamed.
|
-
Property mode set to
100755
|
|
File size:
566 bytes
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | set -e |
|---|
| 3 | |
|---|
| 4 | case $1 in |
|---|
| 5 | -*) in=./$1 ;; |
|---|
| 6 | *) in=$1 ;; |
|---|
| 7 | esac |
|---|
| 8 | case $2 in |
|---|
| 9 | -*) out=./$2 ;; |
|---|
| 10 | *) out=$2 ;; |
|---|
| 11 | esac |
|---|
| 12 | tmp=`echo "$out"|sed 's/\.zip$//'` |
|---|
| 13 | |
|---|
| 14 | rm -rf "$tmp" |
|---|
| 15 | mkdir "$tmp" |
|---|
| 16 | for r in 16 32 128 256 512 ; do |
|---|
| 17 | inkscape -w "$r" -h "$r" --export-filename="$tmp/icon_${r}x${r}.png" "$in" |
|---|
| 18 | done |
|---|
| 19 | for r in 16 128 256 ; do |
|---|
| 20 | d=`expr $r + $r` |
|---|
| 21 | ln "$tmp/icon_${d}x${d}.png" "$tmp/icon_${r}x${r}@2x.png" |
|---|
| 22 | done |
|---|
| 23 | for r in 32 512 ; do |
|---|
| 24 | d=`expr $r + $r` |
|---|
| 25 | inkscape -w "$d" -h "$d" --export-filename="$tmp/icon_${r}x${r}@2x.png" "$in" |
|---|
| 26 | done |
|---|
| 27 | rm -f "$out" |
|---|
| 28 | zip --move -r "$out" "$tmp" |
|---|
Note: See
TracBrowser
for help on using the repository browser.