From 6514956d4239f77d3cba34fd06aab5f1001e05de Mon Sep 17 00:00:00 2001 From: David Tardon Date: Sat, 4 May 2013 09:07:16 +0200 Subject: install scripts from shell using filelists The FILELIST install method is really tailored to large sets of closely related files. It is not such a great idea to apply it just to move some unrelated files, delivered from a single module, out of $(OUTDIR), like here, because it requires splitting one Package to several to allow the files to be placed to different installation modules in scp2. The extra makefile increases the overhead needed to place a file into an installation set. We really need a better way to handle this... Change-Id: I2f271562d8773152e69d284b4fe8ae356dea0945 --- shell/Package_senddoc.mk | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 shell/Package_senddoc.mk (limited to 'shell/Package_senddoc.mk') diff --git a/shell/Package_senddoc.mk b/shell/Package_senddoc.mk new file mode 100644 index 000000000000..c94cb8a2c78a --- /dev/null +++ b/shell/Package_senddoc.mk @@ -0,0 +1,16 @@ +# -*- 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_Package_Package,shell_senddoc,$(SRCDIR)/shell/source/unix/misc)) + +$(eval $(call gb_Package_set_outdir,shell_senddoc,$(INSTDIR))) + +$(eval $(call gb_Package_add_file,shell_senddoc,program/senddoc,senddoc.sh)) + +# vim: set shiftwidth=4 tabstop=4 noexpandtab: -- cgit