Fix checking for inkscape binary.
[dcpomatic.git] / graphics / update
1 #!/bin/bash -e
2 #
3 # Update generated stuff in graphics/ from the source files.
4 #
5 # It would be nice to do this with waf but:
6 # a) getting the wscript right is a complete pain in the arse
7 # b) running Inkscape from the command line on OS X is a complete pain in the arse
8
9 set -e
10
11 pwd=`pwd`
12 if [ `basename $pwd` != "graphics" ]; then
13     echo "$0: run within graphics/"
14     exit 1
15 fi
16
17 function required_font()
18 {
19     set +e
20     check=$(fc-list | grep "$1")
21     set -e
22     if [ "$check" == "" ]; then
23         echo "Missing font $1"
24         exit 1
25     fi
26 }
27
28 svg_apps="dcpomatic2_kdm dcpomatic2_server dcpomatic2_batch dcpomatic2_player dcpomatic2_playlist dcpomatic2_disk dcpomatic2_combiner"
29
30
31 if [ `uname -s` == "Darwin" ]; then
32     # Convert OS X icons using OS X-only iconutil
33     for p in dcpomatic2 $svg_apps; do
34         iconutil --convert icns --output osx/$p.icns osx/$p.iconset
35     done
36 else
37     required_font "Libre Baskerville"
38
39     INKSCAPE="$HOME/Applications/inkscape"
40     for c in icotool convert inkbatch $INKSCAPE; do
41         if [ ! -x "$(command -v $c)" ]; then
42             echo "$c is required"
43             exit 1
44         fi
45     done
46
47
48     # OS X application icons
49     mkdir -p osx
50     for r in 16 32 128 256 512; do
51         for p in dcpomatic2; do
52             mkdir -p osx/$p.iconset
53             convert src/dcpomatic.png -resize $rx$r osx/$p.iconset/icon_${r}x${r}.png
54             convert src/dcpomatic.png -resize $rx$r osx/$p.iconset/icon_${r}x${r}@2x.png
55         done
56         for p in $svg_apps; do
57             mkdir -p osx/$p.iconset
58             $INKSCAPE --export-filename=osx/$p.iconset/icon_${r}x${r}.png -w $r -h $r src/$p.svg
59             $INKSCAPE --export-filename=osx/$p.iconset/icon_${r}x${r}@2x.png -w $r -h $r src/$p.svg
60         done
61     done
62
63     # Linux application icons
64     mkdir -p linux
65     for r in 16 22 32 48 64 128 256 512; do
66         mkdir -p linux/$r
67         convert src/dcpomatic.png -resize $rx$r linux/$r/dcpomatic2.png
68         for p in $svg_apps; do
69             $INKSCAPE --export-filename=linux/$r/$p.png src/$p.svg -w $r -h $r
70         done
71     done
72
73     # Windows application icons
74     mkdir -p windows
75     for p in dcpomatic2 $svg_apps; do
76         icotool -c -o windows/$p.ico linux/16/$p.png linux/32/$p.png linux/48/$p.png linux/64/$p.png linux/128/$p.png
77     done
78     convert src/dcpomatic.png -resize 400x400 windows/dcpomatic.bmp
79
80     # OS X preferences icons
81     mkdir -p osx/preferences
82     for i in defaults email kdm_email cover_sheet keys tms notifications locations sound identifiers servers general advanced; do
83         inkbatch -i bounds-$i -o osx/preferences/$i.png --width 32 --height 32 src/preferences.svg
84         inkbatch -i bounds-$i -o osx/preferences/$i@2x.png --width 64 --height 64 src/preferences.svg
85     done
86
87     # OS X menu bar icon for the server
88     $INKSCAPE --export-filename=osx/dcpomatic_small.png -w 64 -h 64 src/dcpomatic_small.svg
89
90     # Splash screen (all platforms)
91     $INKSCAPE --export-filename=splash.png src/splash.svg -w 400 -h 300
92
93     # Timeline toolbar icons (all platforms)
94     for i in select zoom zoom_all snap sequence; do
95         $INKSCAPE --export-filename=$i.png src/$i.svg -w 32 -h 32
96     done
97
98     # Playlist editor tick/no-tick
99     $INKSCAPE --export-filename=tick.png src/tick.svg -w 16 -h 16
100     $INKSCAPE --export-filename=no_tick.png src/no_tick.svg -w 16 -h 16
101
102     # Link icon
103     $INKSCAPE --export-filename=link.png src/link.svg -w 9 -h 16
104
105     # favicon
106     mkdir -p web
107     convert src/web.png -resize 256x256 -transparent white web/favicon-256x256.png
108     for r in 16 32 64 128; do
109         convert web/favicon-256x256.png -resize $rx$r web/favicon-${r}x${r}.png
110     done
111     convert web/favicon-16x16.png web/favicon-32x32.png web/favicon-64x64.png web/favicon-128x128.png web/favicon-256x256.png web/favicon.ico
112     convert src/web.png -resize 123x123 -transparent white web/logo.png
113 fi