summaryrefslogtreecommitdiff
path: root/pyuno/CustomTarget_zipcore.mk
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/CustomTarget_zipcore.mk')
-rw-r--r--pyuno/CustomTarget_zipcore.mk34
1 files changed, 0 insertions, 34 deletions
diff --git a/pyuno/CustomTarget_zipcore.mk b/pyuno/CustomTarget_zipcore.mk
deleted file mode 100644
index 42b37a831b04..000000000000
--- a/pyuno/CustomTarget_zipcore.mk
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*- 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/.
-#
-
-$(eval $(call gb_CustomTarget_CustomTarget,pyuno/zipcore))
-
-# system python (only mingw)
-ifneq ($(SYSTEM_PYTHON),)
-# mingw: MINGW_SYSROOT is defined in configure
-ifeq ($(OS)$(COM),WNTGCC)
-pyuno_PYTHON_LIB_DIR=$(MINGW_SYSROOT)/lib/python$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)
-endif
-else
-$(error SHOULD NOT GET HERE)
-endif
-
-pyuno_PYTHON_ARCHIVE_NAME:=python-core-$(PYTHON_VERSION).zip
-
-$(call gb_CustomTarget_get_target,pyuno/zipcore) : \
- $(call gb_CustomTarget_get_workdir,pyuno/zipcore)/$(pyuno_PYTHON_ARCHIVE_NAME)
-
-# create zip archive
-$(call gb_CustomTarget_get_workdir,pyuno/zipcore)/$(pyuno_PYTHON_ARCHIVE_NAME) \
- : $(call gb_ExternalPackage_get_target,python3) \
- | $(call gb_CustomTarget_get_workdir,pyuno/zipcore)/.dir
- $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ZIP,1)
- cd $(pyuno_PYTHON_LIB_DIR) && zip -q $@ $(shell cd $(pyuno_PYTHON_LIB_DIR) && $(FIND) . -type f | grep -v "\.pyc" | grep -v "\.py~" | grep -v .orig | grep -v _failed)
-
-# vim: set noet sw=4 ts=4: