diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-10 23:34:53 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-10 23:42:54 +0100 |
commit | cdb4048d7201e509862b7e2a74e60c1d65a2ba42 (patch) | |
tree | b989a0874fd5d859b77a28682493efb4ce3bab52 | |
parent | 78e3d554d15a565514d78a09d5dcd7f29e2f91ec (diff) | |
download | guix-cdb4048d7201e509862b7e2a74e60c1d65a2ba42.tar guix-cdb4048d7201e509862b7e2a74e60c1d65a2ba42.tar.gz |
gnu: portaudio: Remove custom bootstrap phase.
* gnu/packages/audio.scm (portaudio)[arguments]: Remove autoreconf phase.
-rw-r--r-- | gnu/packages/audio.scm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 5848411087..bf5ee3c65f 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2753,20 +2753,14 @@ portions of LAME.") ;; TODO: Add ASIHPI. `(("alsa-lib" ,alsa-lib) ("jack" ,jack-1))) + ;; Autoreconf is necessary because the audacity-compat patch modifies .in + ;; files. (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) ("libtool" ,libtool) ("pkg-config" ,pkg-config))) - (arguments - '(#:phases - ;; Autoreconf is necessary because the audacity-compat patch modifies - ;; .in files. - (modify-phases %standard-phases - (add-after 'unpack 'autoreconf - (lambda _ - (invoke "autoreconf" "-vif")))) - #:tests? #f)) ;no 'check' target + (arguments '(#:tests? #f)) ;no 'check' target (home-page "http://www.portaudio.com/") (synopsis "Audio I/O library") (description |