me
/
guix
Archived
1
0
Fork 0

gnu: lame: Update to 3.100.

* gnu/packages/mp3.scm (lame): Update to 3.100.
[source]: Don't hard-code version.
master
Marius Bakke 2017-10-22 00:33:29 +02:00
parent 28d0b52164
commit 3d679ab1e5
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 3 deletions

View File

@ -43,6 +43,7 @@
#:use-module (gnu packages video) ;ffmpeg
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
#:use-module (guix build-system gnu)
#:use-module (guix build-system python)
#:use-module (guix build-system cmake))
@ -348,14 +349,15 @@ use with CD-recording software).")
(define-public lame
(package
(name "lame")
(version "3.99.5")
(version "3.100")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/lame/lame/3.99/lame-"
(uri (string-append "mirror://sourceforge/lame/lame/"
(version-major+minor version) "/lame-"
version ".tar.gz"))
(sha256
(base32
"1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14"))))
"07nsn5sy3a8xbmw1bidxnsj5fj6kg9ai04icmqw40ybkp353dznx"))))
(build-system gnu-build-system)
;; XXX FIXME: Use gcc-4.8 on i686 to work around
;; <http://bugs.gnu.org/20856>.