diff options
author | Julien Lepiller <julien@lepiller.eu> | 2017-01-15 12:30:09 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2017-01-16 22:34:30 +0100 |
commit | 8fe6b9327d3598ae5fe5c0f71895f1fdb37c0516 (patch) | |
tree | b1a4b94447d0d90ed7aa6655213a1a5bdde87f59 /gnu/packages/ocaml.scm | |
parent | 138adbbe051bcc83210b3197f62b8f7f70b0f16c (diff) | |
download | guix-8fe6b9327d3598ae5fe5c0f71895f1fdb37c0516.tar guix-8fe6b9327d3598ae5fe5c0f71895f1fdb37c0516.tar.gz |
gnu: camlzip: Install both modules.
* gnu/packages/ocaml.scm (camlzip) [arguments]: Install both zip and camlzip
modules.
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 93020f1c06..f8609bdc9e 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -804,10 +804,19 @@ other XUnit testing frameworks.") `(#:phases (modify-phases %standard-phases (delete 'configure) - (add-before 'install 'fix-install-name - (lambda* (#:key #:allow-other-keys) - (substitute* "Makefile" - (("install zip") "install camlzip"))))) + (add-after 'install 'install-camlzip + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (dir (string-append out "/lib/ocaml/site-lib/camlzip"))) + (mkdir-p dir) + (call-with-output-file (string-append dir "/META") + (lambda (port) + (format port "version=\"1.06\"\n") + (format port "requires=\"unix\"\n") + (format port "archive(byte)=\"zip.cma\"\n") + (format port "archive(native)=\"zip.cmxa\"\n") + (format port "archive(native,plugin)=\"zip.cmxs\"\n") + (format port "directory=\"../zip\"\n"))))))) #:install-target "install-findlib" #:make-flags (list "all" "allopt" |