mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-02 09:28:57 -05:00
gnu: xlsxio: Remove ad hoc 'install phase.
* gnu/packages/xml.scm (xlsxio)[arguments]: Use #:make-flags instead of an ad hoc 'install phase.
This commit is contained in:
parent
3fae4f64ba
commit
7be1a73ea2
1 changed files with 3 additions and 6 deletions
|
@ -1532,15 +1532,12 @@ (define-public xlsxio
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:make-flags
|
||||
#~(list (string-append "PREFIX=" #$output))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(delete 'check)
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(invoke "make" "install"
|
||||
(string-append
|
||||
"PREFIX=" (assoc-ref outputs "out"))))))))
|
||||
(delete 'check))))
|
||||
(synopsis "C library for reading and writing .xlsx files")
|
||||
(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)
|
||||
|
|
Loading…
Reference in a new issue