gnu: wfview: Update to 1.2d.
* gnu/packages/radio.scm (wfview): Update to 1.2d. [inputs]: Add opus. [arguments]: Update 'configure' phase. Remove custom 'install' phase.
This commit is contained in:
parent
aec7ea3710
commit
021a630676
@ -2123,19 +2123,19 @@ software-defined radio receivers.")
|
|||||||
(define-public wfview
|
(define-public wfview
|
||||||
(package
|
(package
|
||||||
(name "wfview")
|
(name "wfview")
|
||||||
(version "1.0")
|
(version "1.2d")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://gitlab.com/eliggett/wfview")
|
(url "https://gitlab.com/eliggett/wfview")
|
||||||
(commit (string-append "v" version))))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "16a9afm0nkqx4pzwfxisspybimhqdyr3yjpr7ac7wgpp3520ikzi"))))
|
(base32 "1kpkwxhcacgmprbr8xz840rj9a22513vxrh2q7d3js5i1dva8j2z"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list qcustomplot qtbase-5 qtmultimedia qtserialport))
|
(list opus qcustomplot qtbase-5 qtmultimedia qtserialport))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No test suite.
|
`(#:tests? #f ; No test suite.
|
||||||
#:phases
|
#:phases
|
||||||
@ -2149,23 +2149,12 @@ software-defined radio receivers.")
|
|||||||
(("/usr/share")
|
(("/usr/share")
|
||||||
(string-append (assoc-ref outputs "out") "/share")))))
|
(string-append (assoc-ref outputs "out") "/share")))))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda _
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(mkdir-p "build")
|
(mkdir-p "build")
|
||||||
(chdir "build")
|
(chdir "build")
|
||||||
(invoke "qmake" "../wfview.pro")))
|
(invoke "qmake"
|
||||||
(replace 'install
|
(string-append "PREFIX=" (assoc-ref outputs "out"))
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
"../wfview.pro"))))))
|
||||||
(let* ((out (assoc-ref outputs "out")))
|
|
||||||
(install-file "wfview"
|
|
||||||
(string-append out "/bin"))
|
|
||||||
(install-file "wfview.png"
|
|
||||||
(string-append out "/share/pixmaps"))
|
|
||||||
(install-file "wfview.desktop"
|
|
||||||
(string-append out "/share/applications"))
|
|
||||||
(let ((dir (string-append
|
|
||||||
out "/share/wfview/stylesheets/qdarkstyle")))
|
|
||||||
(mkdir-p dir)
|
|
||||||
(copy-recursively "qdarkstyle" dir))))))))
|
|
||||||
(home-page "https://wfview.org/")
|
(home-page "https://wfview.org/")
|
||||||
(synopsis "Software to control Icom radios")
|
(synopsis "Software to control Icom radios")
|
||||||
(description
|
(description
|
||||||
|
Loading…
Reference in New Issue
Block a user