gnu: libngspice: Delete autogenerated config.h.
* gnu/packages/engineering.scm (libngspice)[arguments]<#:phases>: Rename phase 'delete-script-files to 'delete-scripts-and-config and delete config.h. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>master
parent
e22a711c97
commit
33fa648f75
|
@ -1711,11 +1711,16 @@ high-performance parallel differential evolution (DE) optimization algorithm.")
|
|||
(substitute* "man/man1/Makefile.in"
|
||||
(("^man_MANS = ngspice\\.1 ngnutmeg\\.1 ngsconvert\\.1 ngmultidec\\.1")
|
||||
"man_MANS = "))))
|
||||
(add-after 'install 'delete-script-files
|
||||
(add-after 'install 'delete-scripts-and-config
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(delete-file-recursively
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/share/ngspice/scripts")))))
|
||||
"/share/ngspice/scripts"))
|
||||
;; This file is autogenerated by the configure script and should
|
||||
;; not be distributed. It could be removed in ngspice 35. See
|
||||
;; https://bugs.archlinux.org/task/70569 for reference.
|
||||
(delete-file (string-append (assoc-ref outputs "out")
|
||||
"/include/config.h")))))
|
||||
#:configure-flags
|
||||
(list "--enable-openmp"
|
||||
"--enable-ciderlib"
|
||||
|
|
Reference in New Issue