From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56281) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dfjxj-0003CK-0B for guix-patches@gnu.org; Thu, 10 Aug 2017 05:41:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dfjxf-0006ag-42 for guix-patches@gnu.org; Thu, 10 Aug 2017 05:41:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45307) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dfjxf-0006a9-03 for guix-patches@gnu.org; Thu, 10 Aug 2017 05:41:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dfjxd-00016i-LL for guix-patches@gnu.org; Thu, 10 Aug 2017 05:41:02 -0400 Subject: [bug#28010] [PATCH] gnu: Add emacs-engine-mode. Resent-Message-ID: Message-Id: MIME-Version: 1.0 From: Arun Isaac Date: Thu, 10 Aug 2017 15:08:41 +0530 In-reply-to: <8737925pte.fsf@gmail.com> References: <8737925pte.fsf@gmail.com> Content-Type: text/plain Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Oleg Pykhalov Cc: 28010@debbugs.gnu.org Thanks for the patch! > + (arguments > + `(#:phases > + (modify-phases %standard-phases > + (add-after 'install 'documents > + (lambda* (#:key outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out")) > + (documents (string-append out "/share/doc"))) > + (for-each (lambda (file) > + (install-file file documents)) > + '("README.md" "doc/demo.gif"))) > + #t))))) I think we shouldn't install documentation. A markdown README, IMHO, is not much of a documentation. No other package does this. WDYT? =