diff options
author | Vinicius Monego <monego@posteo.net> | 2021-07-06 18:36:24 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-07-06 19:13:13 -0400 |
commit | 177ff0775b510eca2bdccac84d67edc351fca59e (patch) | |
tree | 21e6c1f41b682d7d99bc8615c5730bd1739b4b94 /gnu/packages/music.scm | |
parent | ffc04f5cc6df16b5c10746ce7e4ef44fafc626e6 (diff) | |
download | guix-177ff0775b510eca2bdccac84d67edc351fca59e.tar.gz |
gnu: rtaudio: Fix include path.
* gnu/packages/audio.scm (rtaudio)[arguments]: Add phase 'fix-inc-path to move the header to where pkg-config expects it. * gnu/packages/music.scm (muse-sequencer)[arguments]{#:phases}: Remove 'fix-include. Don't return #t. Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 5100ec8abe..28661c5667 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -4841,12 +4841,7 @@ sample library.") #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir - (lambda _ (chdir "src") #t)) - (add-after 'chdir 'fix-include - (lambda _ - (substitute* "muse/driver/rtaudio.h" - (("rtaudio/RtAudio.h") "RtAudio.h")) - #t))))) + (lambda _ (chdir "src")))))) (inputs `(("alsa-lib" ,alsa-lib) ("dssi" ,dssi) |