mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: aubio: Enable avcodec support.
* gnu/packages/audio.scm (aubio)[arguments]: Remove "--disable-avcodec" from and add "--enable-avcodec" to #:configure-flags. [inputs]: Add ffmpeg.
This commit is contained in:
parent
2ffa842b4e
commit
4ab9ad1ed2
1 changed files with 3 additions and 3 deletions
|
@ -174,14 +174,14 @@ (define-public aubio
|
|||
"--enable-jack"
|
||||
"--enable-sndfile"
|
||||
"--enable-samplerate"
|
||||
;; TODO: enable compilation with avcodec once available.
|
||||
"--disable-avcodec")
|
||||
"--enable-avcodec")
|
||||
#:python ,python-2))
|
||||
(inputs
|
||||
`(("jack" ,jack-1)
|
||||
("libsndfile" ,libsndfile)
|
||||
("libsamplerate" ,libsamplerate)
|
||||
("fftwf" ,fftwf)))
|
||||
("fftwf" ,fftwf)
|
||||
("ffmpeg" ,ffmpeg))) ; for libavcodec
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "https://aubio.org/")
|
||||
|
|
Loading…
Reference in a new issue