3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add libid3tag.

* gnu/packages/mp3 (libid3tag): New variable.
This commit is contained in:
Andreas Enge 2013-02-02 00:13:08 +01:00
parent d464e72566
commit 8cc9c0dadd

View file

@ -20,6 +20,7 @@
#:use-module ((guix licenses)
#:renamer (symbol-prefix-proc 'license:))
#:use-module (gnu packages autotools)
#:use-module (gnu packages compression)
#:use-module (gnu packages oggvorbis)
#:use-module (guix packages)
#:use-module (guix download)
@ -59,3 +60,24 @@ This package contains the library.")
(license license:gpl2+)
(home-page "http://www.underbit.com/products/mad/")))
(define-public libid3tag
(package
(name "libid3tag")
(version "0.15.1b")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/mad/libid3tag/"
version "/libid3tag-"
version ".tar.gz"))
(sha256
(base32
"0lb1w883dc46dajbdvnia5870brl5lvnlk7g7y58y9wpg5p4znk3"))))
(build-system gnu-build-system)
(inputs `(("zlib" ,zlib)))
(synopsis "libid3tag, a library for reading ID3 tags")
(description
"libid3tag is a library for reading ID3 tags, both ID3v1 and the various
versions of ID3v2")
(license license:gpl2+)
(home-page "http://www.underbit.com/products/mad/")))