60e8f4820a7b4c605aa960bd7e3998270ed7328f
[dcpomatic.git] / graphics / wscript
1 #
2 #    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3 #
4 #    This file is part of DCP-o-matic.
5 #
6 #    DCP-o-matic is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    DCP-o-matic is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 import os
21
22 def build(bld):
23     # Linux application icons
24     if bld.env.TARGET_LINUX:
25         for r in [16, 22, 32, 48, 64, 128, 256, 512]:
26             for p in ['dcpomatic2', 'dcpomatic2_kdm', 'dcpomatic2_server', 'dcpomatic2_batch', 'dcpomatic2_player', 'dcpomatic2_playlist', 'dcpomatic2_disk']:
27                 bld.install_files('${PREFIX}/share/icons/hicolor/%dx%d/apps' % (r, r), 'linux/%d/%s.png' % (r, p))
28
29     # Install stuff for POSIX systems
30     if not bld.env.TARGET_WINDOWS:
31         bld.install_as('${PREFIX}/share/dcpomatic2/dcpomatic2_server_small.png', 'linux/16/dcpomatic2.png')
32         bld.install_files('${PREFIX}/share/dcpomatic2', 'splash.png')
33         bld.install_files('${PREFIX}/share/dcpomatic2', 'zoom.png')
34         bld.install_files('${PREFIX}/share/dcpomatic2', 'zoom_all.png')
35         bld.install_files('${PREFIX}/share/dcpomatic2', 'select.png')
36         bld.install_files('${PREFIX}/share/dcpomatic2', 'snap.png')
37         bld.install_files('${PREFIX}/share/dcpomatic2', 'sequence.png')
38         bld.install_files('${PREFIX}/share/dcpomatic2', 'me.jpg')
39         bld.install_files('${PREFIX}/share/dcpomatic2', 'tick.png')
40         bld.install_files('${PREFIX}/share/dcpomatic2', 'no_tick.png')