guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/05: gnu: rtmidi: Remove custom bootstrap phase.


From: Ricardo Wurmus
Subject: 02/05: gnu: rtmidi: Remove custom bootstrap phase.
Date: Sat, 10 Nov 2018 17:43:01 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 7db147ec455b11c9717c4ac3730bf1139b370897
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Nov 10 23:36:05 2018 +0100

    gnu: rtmidi: Remove custom bootstrap phase.
    
    * gnu/packages/audio.scm (rtmidi)[arguments]: Remove autoconf phase.
---
 gnu/packages/audio.scm | 34 +++++++++++++++-------------------
 1 file changed, 15 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index bf5ee3c..e5b8f9e 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]