gnu: plink-ng: Remove custom install phase.
* gnu/packages/bioinformatics.scm (plink-ng)[arguments]: Adjust make-flags and remove custom 'install phase.master
parent
977ea2c0a3
commit
5f3f2a7cc8
|
@ -6305,18 +6305,14 @@ subsequent visualization, annotation and storage of results.")
|
||||||
'(#:tests? #f ;no "check" target
|
'(#:tests? #f ;no "check" target
|
||||||
#:make-flags (list "BLASFLAGS=-llapack -lopenblas"
|
#:make-flags (list "BLASFLAGS=-llapack -lopenblas"
|
||||||
"CFLAGS=-Wall -O2 -DDYNAMIC_ZLIB=1"
|
"CFLAGS=-Wall -O2 -DDYNAMIC_ZLIB=1"
|
||||||
"ZLIB=-lz")
|
"ZLIB=-lz"
|
||||||
|
(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||||
|
"DESTDIR=")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _ (chdir "1.9") #t))
|
(lambda _ (chdir "1.9") #t))
|
||||||
(delete 'configure) ; no "configure" script
|
(delete 'configure)))) ; no "configure" script
|
||||||
(replace 'install
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(let ((bin (string-append (assoc-ref outputs "out")
|
|
||||||
"/bin/")))
|
|
||||||
(install-file "plink" bin)
|
|
||||||
#t))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("lapack" ,lapack)
|
`(("lapack" ,lapack)
|
||||||
("openblas" ,openblas)
|
("openblas" ,openblas)
|
||||||
|
|
Reference in New Issue