[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: powertabeditor: Update to 2.0.0-alpha14.
From: |
guix-commits |
Subject: |
02/03: gnu: powertabeditor: Update to 2.0.0-alpha14. |
Date: |
Sat, 26 Dec 2020 18:18:20 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 3d5806ed6cf9f8020a25a13b3e2f5c4e479d4529
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Dec 27 00:06:17 2020 +0100
gnu: powertabeditor: Update to 2.0.0-alpha14.
* gnu/packages/music.scm (powertabeditor): Update to 2.0.0-alpha14.
[arguments]: Add phase "fix-pugixml-detection".
---
gnu/packages/music.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index c859573..8fcc22f 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1748,7 +1748,7 @@ your own lessons.")
(define-public powertabeditor
(package
(name "powertabeditor")
- (version "2.0.0-alpha13")
+ (version "2.0.0-alpha14")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -1757,12 +1757,17 @@ your own lessons.")
(file-name (git-file-name name version))
(sha256
(base32
- "12il5xzgg53ick5k4ivvvqdagld5pgigiiz6s829kkdaymqr7vx5"))))
+ "1wsvni2aa9h2bpndlic7ckch4n600ahwm56n521y5vxivwjx3jmj"))))
(build-system cmake-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
- (replace 'check (lambda _ (invoke "bin/pte_tests"))))))
+ (replace 'check (lambda _ (invoke "bin/pte_tests")))
+ (add-after 'unpack 'fix-pugixml-detection
+ (lambda _
+ (substitute* "cmake/third_party/pugixml.cmake"
+ (("add_library") "#add_library"))
+ #t)))))
(inputs
`(("alsa-lib" ,alsa-lib)
("boost" ,boost)