diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-10 23:36:05 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-10 23:42:54 +0100 |
commit | 7db147ec455b11c9717c4ac3730bf1139b370897 (patch) | |
tree | eb5998eec835bb6d74d67fd4e901f99cc713a59d /gnu/packages/audio.scm | |
parent | cdb4048d7201e509862b7e2a74e60c1d65a2ba42 (diff) | |
download | gnu-guix-7db147ec455b11c9717c4ac3730bf1139b370897.tar gnu-guix-7db147ec455b11c9717c4ac3730bf1139b370897.tar.gz |
gnu: rtmidi: Remove custom bootstrap phase.
* gnu/packages/audio.scm (rtmidi)[arguments]: Remove autoconf phase.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index bf5ee3c65f..e5b8f9ed79 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2285,25 +2285,21 @@ tempo and pitch of an audio recording independently of one another.") (build-system gnu-build-system) (arguments `(#:tests? #f ;no "check" target - #:phases (modify-phases %standard-phases - (add-after - 'unpack 'autoconf - (lambda _ (invoke "autoreconf" "-vfi"))) - (add-before - 'build 'fix-makefile - (lambda _ - (substitute* "Makefile" - (("/bin/ln") "ln") - (("RtMidi.h RtError.h") "RtMidi.h")) - #t)) - (add-before - 'install 'make-target-dirs - (lambda _ - (let ((out (assoc-ref %outputs "out"))) - (mkdir-p (string-append out "/bin")) - (mkdir (string-append out "/lib")) - (mkdir (string-append out "/include"))) - #t))))) + #:phases + (modify-phases %standard-phases + (add-before 'build 'fix-makefile + (lambda _ + (substitute* "Makefile" + (("/bin/ln") "ln") + (("RtMidi.h RtError.h") "RtMidi.h")) + #t)) + (add-before 'install 'make-target-dirs + (lambda _ + (let ((out (assoc-ref %outputs "out"))) + (mkdir-p (string-append out "/bin")) + (mkdir (string-append out "/lib")) + (mkdir (string-append out "/include"))) + #t))))) (inputs `(("jack" ,jack-1) ("alsa-lib" ,alsa-lib))) |