gnu: Add faad2.
* gnu/packages/audio.scm (faad2): New variable.
This commit is contained in:
parent
a22722c1a5
commit
70fc29d9c5
1 changed files with 33 additions and 0 deletions
|
@ -50,6 +50,7 @@
|
||||||
#:use-module (gnu packages readline)
|
#:use-module (gnu packages readline)
|
||||||
#:use-module (gnu packages xiph)
|
#:use-module (gnu packages xiph)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
|
#:use-module (gnu packages zip)
|
||||||
#:use-module (srfi srfi-1))
|
#:use-module (srfi srfi-1))
|
||||||
|
|
||||||
(define-public alsa-modular-synth
|
(define-public alsa-modular-synth
|
||||||
|
@ -277,6 +278,38 @@ plugins are provided.")
|
||||||
ALSA PCM devices.")
|
ALSA PCM devices.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public faad2
|
||||||
|
(package
|
||||||
|
(name "faad2")
|
||||||
|
(version "2.7")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://sourceforge/faac/faad2-" version ".zip"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16f3l16c00sg0wkrkm3vzv0gy3g97x309vw788igs0cap2x1ak3z"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("unzip" ,unzip)))
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(alist-cons-after
|
||||||
|
'unpack 'bootstrap
|
||||||
|
(lambda _
|
||||||
|
(substitute* "bootstrap" (("\r\n") "\n"))
|
||||||
|
(zero? (system* "sh" "bootstrap")))
|
||||||
|
%standard-phases)))
|
||||||
|
(home-page "http://www.audiocoding.com/faad2.html")
|
||||||
|
(synopsis "MPEG-4 and MPEG-2 AAC decoder")
|
||||||
|
(description
|
||||||
|
"FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR,
|
||||||
|
PS, and DAB+.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
||||||
(define-public freepats
|
(define-public freepats
|
||||||
(package
|
(package
|
||||||
(name "freepats")
|
(name "freepats")
|
||||||
|
|
Reference in a new issue