From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55792) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e5wYF-0007xj-IP for guix-patches@gnu.org; Sat, 21 Oct 2017 12:23:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e5wYA-0002kN-JN for guix-patches@gnu.org; Sat, 21 Oct 2017 12:23:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45814) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e5wYA-0002jq-Fd for guix-patches@gnu.org; Sat, 21 Oct 2017 12:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e5wYA-00031q-7W for guix-patches@gnu.org; Sat, 21 Oct 2017 12:23:02 -0400 Subject: [bug#28925] [PATCH 1/7] gnu: camlp5: install META file. Resent-Message-ID: From: julien@lepiller.eu Date: Sat, 21 Oct 2017 18:20:51 +0200 Message-Id: <20171021162058.27938-1-julien@lepiller.eu> In-Reply-To: <20171021181638.27d0d0d8@lepiller.eu> References: <20171021181638.27d0d0d8@lepiller.eu> 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: 28925@debbugs.gnu.org From: Julien Lepiller * gnu/packages/ocaml.scm (camlp5) [phases]: New install-meta phase. --- gnu/packages/ocaml.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index aa2f00667..40d42a5d4 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -401,7 +401,12 @@ syntax of OCaml.") (lambda _ (zero? (system* "make" "-j" (number->string (parallel-job-count)) - "world.opt"))))))) + "world.opt")))) + ;; Required for findlib to find camlp5's libraries + (add-after 'install 'install-meta + (lambda* (#:key outputs #:allow-other-keys) + (install-file "etc/META" (string-append (assoc-ref outputs "out") + "/lib/ocaml/camlp5/"))))))) (home-page "http://camlp5.gforge.inria.fr/") (synopsis "Pre-processor Pretty Printer for OCaml") (description -- 2.14.2