[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/09: gnu: wfview: Update to 1.2d.
From: |
guix-commits |
Subject: |
02/09: gnu: wfview: Update to 1.2d. |
Date: |
Fri, 17 Dec 2021 09:21:09 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 021a630676e12c9f490b7cf8dcd2296abe18e744
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Fri Dec 17 13:56:18 2021 +0100
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.
---
gnu/packages/radio.scm | 27 ++++++++-------------------
1 file changed, 8 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 61f6150..cf873f6 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -2123,19 +2123,19 @@ software-defined radio receivers.")
(define-public wfview
(package
(name "wfview")
- (version "1.0")
+ (version "1.2d")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/eliggett/wfview")
- (commit (string-append "v" version))))
+ (commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "16a9afm0nkqx4pzwfxisspybimhqdyr3yjpr7ac7wgpp3520ikzi"))))
+ (base32 "1kpkwxhcacgmprbr8xz840rj9a22513vxrh2q7d3js5i1dva8j2z"))))
(build-system qt-build-system)
(inputs
- (list qcustomplot qtbase-5 qtmultimedia qtserialport))
+ (list opus qcustomplot qtbase-5 qtmultimedia qtserialport))
(arguments
`(#:tests? #f ; No test suite.
#:phases
@@ -2149,23 +2149,12 @@ software-defined radio receivers.")
(("/usr/share")
(string-append (assoc-ref outputs "out") "/share")))))
(replace 'configure
- (lambda _
+ (lambda* (#:key outputs #:allow-other-keys)
(mkdir-p "build")
(chdir "build")
- (invoke "qmake" "../wfview.pro")))
- (replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (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))))))))
+ (invoke "qmake"
+ (string-append "PREFIX=" (assoc-ref outputs "out"))
+ "../wfview.pro"))))))
(home-page "https://wfview.org/")
(synopsis "Software to control Icom radios")
(description
- branch master updated (47bc8a5 -> 6718fe7), guix-commits, 2021/12/17
- 03/09: gnu: dream: Update to 2.2., guix-commits, 2021/12/17
- 07/09: gnu: xnec2c: Update to 4.2., guix-commits, 2021/12/17
- 02/09: gnu: wfview: Update to 1.2d.,
guix-commits <=
- 01/09: gnu: sdrangel: Update to 6.17.5., guix-commits, 2021/12/17
- 04/09: gnu: qsstv: Update to 9.5.8., guix-commits, 2021/12/17
- 05/09: gnu: rtl-433: Update to 21.12., guix-commits, 2021/12/17
- 09/09: gnu: js8call: Remove workaround., guix-commits, 2021/12/17
- 06/09: gnu: dump1090: Update to 6.1., guix-commits, 2021/12/17
- 08/09: gnu: wsjtx: Update to 2.5.2., guix-commits, 2021/12/17