From ed9e5faeda5d682244bab47c2eea70f9bdfd2546 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bergstr=C3=B6m?= Date: Thu, 26 Feb 2015 11:08:16 +1100 Subject: [PATCH] build: reduce tarball size by 8-10% Slim the tarballs further by removing examples, documentation and test for third party libraries. Also switch to checkout-index versus archive so we avoid using tar. --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c1bdb7abc4467..072c62de5f55bf 100644 --- a/Makefile +++ b/Makefile @@ -277,12 +277,14 @@ $(PKG): release-only SIGN="$(INT_SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh $(TARBALL): release-only $(NODE_EXE) doc - git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf - + git checkout-index -a -f --prefix=$(TARNAME)/ mkdir -p $(TARNAME)/doc/api cp doc/iojs.1 $(TARNAME)/doc/iojs.1 cp -r out/doc/api/* $(TARNAME)/doc/api/ - rm -rf $(TARNAME)/deps/v8/test # too big + rm -rf $(TARNAME)/deps/v8/{test,samples,tools/profviz} # too big rm -rf $(TARNAME)/doc/images # too big + rm -rf $(TARNAME)/deps/uv/{docs,samples,test} + rm -rf $(TARNAME)/deps/openssl/{doc,demos,test} rm -rf $(TARNAME)/deps/zlib/contrib # too big, unused find $(TARNAME)/ -type l | xargs rm # annoying on windows tar -cf $(TARNAME).tar $(TARNAME)