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:
Kei Kebreau 2019-06-05 10:25:06 -04:00
parent 2ffa842b4e
commit 4ab9ad1ed2
No known key found for this signature in database
GPG Key ID: E6A5EE3C19467A0D
1 changed files with 3 additions and 3 deletions

View File

@ -174,14 +174,14 @@ Filter) modules follow the convention of 1V / Octave.")
"--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/")