gnu: ccl: Install included libraries.
* gnu/packages/lisp.scm (ccl)[arguments]: Add 'srfi-26' to '#:modules', and copy the included libraries to the output in the 'install' phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c86c19914a
commit
fc7d5a34d0
|
@ -414,6 +414,9 @@ statistical profiler, a code coverage tool, and many other extensions.")
|
||||||
("subversion" ,subversion)))
|
("subversion" ,subversion)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no 'check' target
|
`(#:tests? #f ;no 'check' target
|
||||||
|
#:modules ((srfi srfi-26)
|
||||||
|
(guix build utils)
|
||||||
|
(guix build gnu-build-system))
|
||||||
#:phases
|
#:phases
|
||||||
(alist-replace
|
(alist-replace
|
||||||
'unpack
|
'unpack
|
||||||
|
@ -465,10 +468,16 @@ statistical profiler, a code coverage tool, and many other extensions.")
|
||||||
;; "guix package --search="
|
;; "guix package --search="
|
||||||
(_ "UNSUPPORTED")))
|
(_ "UNSUPPORTED")))
|
||||||
(heap (string-append kernel ".image")))
|
(heap (string-append kernel ".image")))
|
||||||
(mkdir-p libdir)
|
(install-file kernel libdir)
|
||||||
|
(install-file heap libdir)
|
||||||
|
|
||||||
|
(let ((dirs '("lib" "library" "examples" "contrib"
|
||||||
|
"tools" "objc-bridge")))
|
||||||
|
(for-each copy-recursively
|
||||||
|
dirs
|
||||||
|
(map (cut string-append libdir <>) dirs)))
|
||||||
|
|
||||||
(mkdir-p bindir)
|
(mkdir-p bindir)
|
||||||
(copy-file kernel (string-append libdir kernel))
|
|
||||||
(copy-file heap (string-append libdir heap))
|
|
||||||
(with-output-to-file wrapper
|
(with-output-to-file wrapper
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(display
|
(display
|
||||||
|
|
Loading…
Reference in New Issue