bbbc51e931
After recent instdir changes the SCPZIP_REPLACE thing was not used any more for Info.plist, so all the ${FOO} things were left in Info.plist unexpanded with predictably wonky results, a non-working app. Instead just expand it from the configure script. While at it, use a correct CFBundleShortVersionString: only three integers should be in that. Also, hardcode FILEFORMATNAME as OpenOffice.org and FILEFORMATVERSION as 1.0, and drop the "variables", as that is what those "variables" *means*. They were used to refer to the OOo 1.0 formats. (It would have been utterly wrong to define them as something else, like another product name and a newer version number, in openoffice.lst, so pointless to have them there.) Drop the meaningless BUILDIDCWS. Change-Id: I4030aa060b78e8b3fb812a6362869996e8db7d3d
48 lines
1.6 KiB
Makefile
48 lines
1.6 KiB
Makefile
# -*- 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
|
|
info_BUILDDIR := $(BUILDDIR)/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_BUILDDIR)/Info.plist
|
|
cp $< $@
|
|
|
|
$(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 $(info_WORKDIR)/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 >$@
|
|
|
|
$(eval $(call gb_CustomTarget_ulfex_rule,\
|
|
$(info_WORKDIR)/documents.ulf,\
|
|
$(SRCDIR)/sysui/desktop/share/documents.ulf,\
|
|
$(foreach lang,$(gb_TRANS_LANGS),\
|
|
$(gb_POLOCATION)/$(lang)/sysui/desktop/share.po)))
|
|
|
|
# vim: set noet sw=4 ts=4:
|