summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/installer/packager-uxp.mk
blob: 8d7cb4e62d42cbb3f90f25ae074031834a693900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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/.

# We need to include the mozilla packaging routines because we are
# very much still dependent on them
include $(MOZILLA_DIR)/toolkit/mozapps/installer/packager.mk

# This is currently only used on Windows, Linux, and Solaris
# on other platforms such as Mac will fall back to the orginal
# mozilla packaging
make-archive:
ifeq (,$(filter SunOS Linux WINNT,$(OS_ARCH)))
	$(MAKE) make-package
else
	$(MAKE) stage-package make-buildinfo-file
	@echo 'Compressing...'
ifeq (WINNT,$(OS_ARCH))
	cd $(DIST); $(CYGWIN_WRAPPER) 7z a -t7z -m0=lzma2 -mx=9 -aoa -bb3 $(PKG_BASENAME).7z $(MOZ_PKG_DIR)
else
	cd $(DIST); XZ_OPT=-9e $(TAR) cfJv $(PKG_BASENAME).tar.xz $(MOZ_PKG_DIR)
endif
endif