gnu: portaudio: Build position independent code and install more headers.

* gnu/packages/audio.scm (portaudio)[arguments]: Pass "--with-pic" and
initialize libtool in new build phase "build-only-position-independent-code";
install extra header in new build phase "install-missing-headers".
master
Ricardo Wurmus 2019-03-13 13:19:06 +01:00
parent 0fbaf1956b
commit 86fded86c2
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 1 deletions

View File

@ -2834,7 +2834,26 @@ portions of LAME.")
("automake" ,automake)
("libtool" ,libtool)
("pkg-config" ,pkg-config)))
(arguments '(#:tests? #f)) ;no 'check' target
(arguments
'(#:tests? #f ;no 'check' target
#:configure-flags '("--with-pic")
#:phases
(modify-phases %standard-phases
;; This is needed for linking the static libraries
(add-after 'unpack 'build-only-position-independent-code
(lambda _
(substitute* "configure.in"
(("AC_PROG_LIBTOOL" m)
(string-append m "\nAM_PROG_AR\nLT_INIT([pic-only])")))
(delete-file "configure")
#t))
;; Some headers are not installed by default, but are needed by
;; packages like Kaldi.
(add-after 'install 'install-missing-headers
(lambda* (#:key outputs #:allow-other-keys)
(install-file "src/common/pa_ringbuffer.h"
(string-append (assoc-ref outputs "out") "/include"))
#t)))))
(home-page "http://www.portaudio.com/")
(synopsis "Audio I/O library")
(description