gnu: java-cisd-args4j: Copy instead of unpacking input.
* gnu/packages/java.scm (java-cisd-args4j)[arguments]: Do not unpack build-resources input; just copy the contents.master
parent
41e5c12c4a
commit
2640da8410
|
@ -3426,11 +3426,9 @@ libraries from the SIS division at ETH Zurich like jHDF5.")
|
||||||
(add-after 'unpack 'unpack-build-resources
|
(add-after 'unpack 'unpack-build-resources
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(mkdir-p "../build_resources")
|
(mkdir-p "../build_resources")
|
||||||
(invoke "tar" "xf" (assoc-ref inputs "build-resources")
|
(copy-recursively (assoc-ref inputs "build-resources")
|
||||||
"-C" "../build_resources"
|
"../build_resources")
|
||||||
"--strip-components=1")
|
(mkdir-p "../build_resources/lib")))
|
||||||
(mkdir-p "../build_resources/lib")
|
|
||||||
#t))
|
|
||||||
(add-after 'unpack-build-resources 'fix-dependencies
|
(add-after 'unpack-build-resources 'fix-dependencies
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
;; FIXME: There should be a more convenient abstraction for
|
;; FIXME: There should be a more convenient abstraction for
|
||||||
|
|
Reference in New Issue