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 \
33 lc_navigationbarleft.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 \
42 sc_navigationbarleft.png \
45 $(call gb_Zip_add_file
,LibreLogo
,python
/LibreLogo
/icons
/$(icon
),\
46 $(SRCDIR
)/librelogo
/source
/icons
/$(icon
) \
49 # vim:set shiftwidth=4 softtabstop=4 expandtab: