gnu: xlsxio: Remove ad hoc 'install phase.
* gnu/packages/xml.scm (xlsxio)[arguments]: Use #:make-flags instead of an ad hoc 'install phase.master
parent
3fae4f64ba
commit
7be1a73ea2
|
@ -1532,15 +1532,12 @@ SAX2 APIs.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
#:make-flags
|
||||||
|
#~(list (string-append "PREFIX=" #$output))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(delete 'check)
|
(delete 'check))))
|
||||||
(replace 'install
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(invoke "make" "install"
|
|
||||||
(string-append
|
|
||||||
"PREFIX=" (assoc-ref outputs "out"))))))))
|
|
||||||
(synopsis "C library for reading and writing .xlsx files")
|
(synopsis "C library for reading and writing .xlsx files")
|
||||||
(description "XLSX I/O aims to provide a C library for reading and writing
|
(description "XLSX I/O aims to provide a C library for reading and writing
|
||||||
.xlsx files. The .xlsx file format is the native format used by Microsoft(R)
|
.xlsx files. The .xlsx file format is the native format used by Microsoft(R)
|
||||||
|
|
Reference in New Issue