mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: gnuradio: Use shared volk instead of bundled one.
* gnu/packages/radio.scm (gnuradio)[source]: Add snippet to delete bundled volk. [inputs]: Add volk. [arguments]: Add "-DENABLE_INTERNAL_VOLK=OFF" to configure-flags.
This commit is contained in:
parent
01782ad006
commit
8e1e86b0e2
1 changed files with 11 additions and 1 deletions
|
@ -34,6 +34,7 @@ (define-module (gnu packages radio)
|
|||
#:use-module (gnu packages boost)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages documentation)
|
||||
#:use-module (gnu packages engineering)
|
||||
#:use-module (gnu packages ghostscript)
|
||||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages gstreamer)
|
||||
|
@ -243,7 +244,13 @@ (define-public gnuradio
|
|||
(uri (string-append "https://www.gnuradio.org/releases/gnuradio/"
|
||||
"gnuradio-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "0aw55gf5549b0fz2qdi7vplcmaf92bj34h40s34b2ycnqasv900r"))))
|
||||
(base32 "0aw55gf5549b0fz2qdi7vplcmaf92bj34h40s34b2ycnqasv900r"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
;; Delete bundled volk to use the shared one.
|
||||
(delete-file-recursively "volk")
|
||||
#t))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("doxygen" ,doxygen)
|
||||
|
@ -288,6 +295,7 @@ (define-public gnuradio
|
|||
("python-pyyaml" ,python-pyyaml)
|
||||
("qtbase" ,qtbase)
|
||||
("qwt" ,qwt)
|
||||
("volk" ,volk)
|
||||
("zeromq" ,zeromq)))
|
||||
(arguments
|
||||
`(#:modules ((guix build cmake-build-system)
|
||||
|
@ -298,6 +306,8 @@ (define-public gnuradio
|
|||
#:imported-modules (,@%cmake-build-system-modules
|
||||
(guix build glib-or-gtk-build-system)
|
||||
(guix build python-build-system))
|
||||
#:configure-flags
|
||||
'("-DENABLE_INTERNAL_VOLK=OFF")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-paths
|
||||
|
|
Loading…
Reference in a new issue