diff options
author | Andreas Enge <andreas@enge.fr> | 2013-08-07 18:07:21 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-08-07 18:07:21 +0200 |
commit | 2ae92cbcc107165abf79d0d0d9c2e073cc63bb13 (patch) | |
tree | c1ba27a3c5cd87ecd9fc59fa9846205be23aebbb /gnu/packages/mp3.scm | |
parent | fd89b36b5b954ba56ef73b599c04ee0dc643dab1 (diff) | |
download | patches-2ae92cbcc107165abf79d0d0d9c2e073cc63bb13.tar patches-2ae92cbcc107165abf79d0d0d9c2e073cc63bb13.tar.gz |
gnu: Add lame.
* gnu/packages/mp3.scm (lame): New variable.
Diffstat (limited to 'gnu/packages/mp3.scm')
-rw-r--r-- | gnu/packages/mp3.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm index 73d4c267ee..941fc47ecd 100644 --- a/gnu/packages/mp3.scm +++ b/gnu/packages/mp3.scm @@ -205,3 +205,20 @@ This package contains the binary.") frontends, as an mp3 player and as an mp3 to wave file decoder (primarily for use with CD-recording software).") (license license:gpl2))) + +(define-public lame + (package + (name "lame") + (version "3.99.5") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/lame/lame/3.99/lame-" + version ".tar.gz")) + (sha256 + (base32 + "1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14")))) + (build-system gnu-build-system) + (home-page "http://lame.sourceforge.net/") + (synopsis "MPEG Audio Layer III (MP3) encoder") + (description "LAME is a high quality MPEG Audio Layer III (MP3) encoder.") + (license license:lgpl2.0))) |