gnu: camlp5: install META file.
* gnu/packages/ocaml.scm (camlp5) [phases]: New install-meta phase.
This commit is contained in:
parent
3d679ab1e5
commit
07b4cd3a48
|
@ -401,7 +401,12 @@ syntax of OCaml.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "make" "-j" (number->string
|
(zero? (system* "make" "-j" (number->string
|
||||||
(parallel-job-count))
|
(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/")
|
(home-page "http://camlp5.gforge.inria.fr/")
|
||||||
(synopsis "Pre-processor Pretty Printer for OCaml")
|
(synopsis "Pre-processor Pretty Printer for OCaml")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue