summaryrefslogtreecommitdiff
path: root/sysui/CustomTarget_infoplist.mk
diff options
context:
space:
mode:
Diffstat (limited to 'sysui/CustomTarget_infoplist.mk')
-rw-r--r--sysui/CustomTarget_infoplist.mk40
1 files changed, 40 insertions, 0 deletions
diff --git a/sysui/CustomTarget_infoplist.mk b/sysui/CustomTarget_infoplist.mk
new file mode 100644
index 000000000000..64419ba5526a
--- /dev/null
+++ b/sysui/CustomTarget_infoplist.mk
@@ -0,0 +1,40 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+info_WORKDIR := $(call gb_CustomTarget_get_workdir,sysui/infoplist)
+info_SRCDIR := $(SRCDIR)/sysui/desktop/macosx
+
+
+$(eval $(call gb_CustomTarget_CustomTarget,sysui/infoplist))
+
+$(eval $(call gb_CustomTarget_register_targets,sysui/infoplist,\
+ PkgInfo \
+ Info.plist \
+ $(foreach lang,en-US $(gb_WITH_LANG),\
+ InfoPlist_$(lang).zip InfoPlist_$(lang)/InfoPlist.strings) \
+))
+
+$(info_WORKDIR)/PkgInfo:
+ $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1)
+ echo "APPLLIBO" > $@
+
+$(info_WORKDIR)/Info.plist: $(info_SRCDIR)/Info.plist
+ sed -e "s|\%EXECUTABLE|soffice|g" $< > $@
+
+$(info_WORKDIR)/InfoPlist_%.zip: $(info_WORKDIR)/InfoPlist_%/InfoPlist.strings
+ $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ZIP,1)
+ zip -j $@ $<
+
+$(info_WORKDIR)/InfoPlist_%/InfoPlist.strings: $(info_WORKDIR)/Info.plist $(call gb_CustomTarget_get_workdir,sysui/share)/documents.ulf
+ mkdir -p $(dir $@)
+ $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,1)
+ $(PERL) -w $(info_SRCDIR)/gen_strings.pl -l $* -p $^ | \
+ iconv -f UTF-8 -t UTF-16 >$@
+
+# vim: set noet sw=4 ts=4: