mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add libshout.
* gnu/packages/xiph.scm (libshout): New varibale.
This commit is contained in:
parent
68e3c29d20
commit
9d44ab95a6
1 changed files with 28 additions and 0 deletions
|
@ -372,3 +372,31 @@ (define-public icecast
|
|||
things in between.")
|
||||
(home-page "http://icecast.org/")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public libshout
|
||||
(package
|
||||
(name "libshout")
|
||||
(version "2.3.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://downloads.xiph.org/releases/libshout/"
|
||||
name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0vlj4dxfxg06xhvv0z2zjjlrjh5di2m28w7v16zcygsy99mmyg6g"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(propagated-inputs
|
||||
;; shout.pc refers to all these.
|
||||
`(("libtheora" ,libtheora)
|
||||
("libvorbis" ,libvorbis)
|
||||
("speex" ,speex)))
|
||||
(home-page "http://www.icecast.org/")
|
||||
(synopsis "Audio streaming library for icecast encoders")
|
||||
(description
|
||||
"Libshout is a library for communicating with and sending data to an
|
||||
icecast server. It handles the socket connection, the timing of the data,
|
||||
and prevents bad data from getting to the icecast server.")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue