mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 08:07:29 +01:00
gnu: aubio: Update to 0.4.6.
* gnu/packages/audio.scm (aubio): Update to 0.4.6. [arguments]: Set reflexive RUNPATH.
This commit is contained in:
parent
d0b025ea69
commit
409dec3f29
1 changed files with 10 additions and 8 deletions
|
@ -145,24 +145,26 @@ (define-public alsa-modular-synth
|
||||||
(define-public aubio
|
(define-public aubio
|
||||||
(package
|
(package
|
||||||
(name "aubio")
|
(name "aubio")
|
||||||
(version "0.4.1")
|
(version "0.4.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"http://aubio.org/pub/aubio-" version ".tar.bz2"))
|
"http://aubio.org/pub/aubio-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15f6nf76y7iyl2kl4ny7ky0zpxfxr8j3902afvd6ydnnkh5dzmr5"))))
|
"1yvwskahx1bf3x2fvi6cwah1ay11iarh79fjlqz8s887y3hkpixx"))))
|
||||||
(build-system waf-build-system)
|
(build-system waf-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
`(#:tests? #f ; no check target
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
'("--enable-fftw3f"
|
(list
|
||||||
"--enable-jack"
|
(string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib")
|
||||||
"--enable-sndfile"
|
"--enable-fftw3f"
|
||||||
"--enable-samplerate"
|
"--enable-jack"
|
||||||
;; enable compilation with avcodec once available
|
"--enable-sndfile"
|
||||||
"--disable-avcodec")
|
"--enable-samplerate"
|
||||||
|
;; TODO: enable compilation with avcodec once available.
|
||||||
|
"--disable-avcodec")
|
||||||
#:python ,python-2))
|
#:python ,python-2))
|
||||||
(inputs
|
(inputs
|
||||||
`(("jack" ,jack-1)
|
`(("jack" ,jack-1)
|
||||||
|
|
Loading…
Reference in a new issue