Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / librelogo / Zip_librelogo.mk
blob617d0fd2ef8dbce6f4b689d6609608fa57c0619e
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_Zip_Zip,LibreLogo,$(WORKDIR)/Zip/LibreLogo))
12 $(eval $(call gb_Zip_add_file,LibreLogo,python/LibreLogo/LibreLogo.py,\
13 $(SRCDIR)/librelogo/source/LibreLogo/LibreLogo.py \
16 $(eval $(call gb_Zip_add_file,LibreLogo,python/LibreLogo/LibreLogo_en_US.properties,\
17 $(SRCDIR)/librelogo/source/pythonpath/LibreLogo_en_US.properties \
20 librelogo_LANGS := $(subst -,_,$(filter-out qtz,$(filter-out en-US,$(gb_WITH_LANG))))
22 $(eval $(foreach lang,$(librelogo_LANGS),\
23 $(call gb_Zip_add_file,LibreLogo,python/LibreLogo/LibreLogo_$(lang).properties,\
24 $(call gb_CustomTarget_get_workdir,librelogo/locproperties)/LibreLogo_$(lang).properties)))
26 $(eval $(foreach icon,\
27 lc_arrowshapes.circular-arrow.png \
28 lc_arrowshapes.circular-leftarrow.png \
29 lc_arrowshapes.down-arrow.png \
30 lc_arrowshapes.up-arrow.png \
31 lc_basicstop.png \
32 lc_editglossary.png \
33 lc_navigationbarleft.png \
34 lc_newdoc.png \
35 lc_runbasic.png \
36 sc_arrowshapes.circular-arrow.png \
37 sc_arrowshapes.circular-leftarrow.png \
38 sc_arrowshapes.down-arrow.png \
39 sc_arrowshapes.up-arrow.png \
40 sc_basicstop.png \
41 sc_editglossary.png \
42 sc_navigationbarleft.png \
43 sc_newdoc.png \
44 sc_runbasic.png, \
45 $(call gb_Zip_add_file,LibreLogo,python/LibreLogo/icons/$(icon),\
46 $(SRCDIR)/librelogo/source/icons/$(icon) \
47 )))
49 # vim:set shiftwidth=4 softtabstop=4 expandtab: