gnu: liquid-dsp: Remove static library.

* gnu/packages/radio.scm (liquid-dsp)[arguments]: Add 'delete-static-library'
  phase.
This commit is contained in:
Guillaume Le Vaillant 2021-06-05 11:43:00 +02:00
parent 573f777495
commit 3a8d0eff9e
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -141,6 +141,13 @@ (define-public liquid-dsp
`(("fftw" ,fftw)
("fftwf" ,fftwf)
("libfec" ,libfec)))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'install 'delete-static-library
(lambda* (#:key outputs #:allow-other-keys)
(delete-file (string-append (assoc-ref outputs "out")
"/lib/libliquid.a")))))))
(home-page "https://liquidsdr.org")
(synopsis "Signal processing library for software-defined radios")
(description