diff options
author | nee <nee.git@cock.li> | 2018-01-02 01:56:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-01-11 10:27:16 +0100 |
commit | 6b445c574bea36569ba93e5538bcb2304a033564 (patch) | |
tree | 5fad66a5c508d2445d1f18d8e9aa245bec2a56f6 /gnu | |
parent | 7bf2a70a4ffd976d50638d3b9f2ec409763157df (diff) | |
download | patches-6b445c574bea36569ba93e5538bcb2304a033564.tar patches-6b445c574bea36569ba93e5538bcb2304a033564.tar.gz |
gnu: Add libdiscid.
* gnu/packages/music.scm (libdiscid): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 8c7cdd1e4b..06359e83a2 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2017 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018 nee <nee.git@hidamari.blue> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3834,3 +3835,27 @@ for the DSSI Soft Synth Interface. A brief list of features: @end enumerate ") (license license:gpl2+))) + +(define-public libdiscid + (package + (name "libdiscid") + (version "0.6.2") + (source + (origin + (method url-fetch) + (uri (string-append + "http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/libdiscid-" + version ".tar.gz")) + (sha256 + (base32 + "1f9irlj3dpb5gyfdnb1m4skbjvx4d4hwiz2152f83m0d9jn47r7r")))) + (arguments `(#:test-target "check")) + (build-system cmake-build-system) + (home-page "https://musicbrainz.org/doc/libdiscid") + (synopsis "Disc id reader library") + (description "libdiscid is a C library for creating MusicBrainz and freedb +disc IDs from audio CDs. It reads a CD's table of contents (TOC) and generates +an identifier which can be used to lookup the CD at MusicBrainz. Additionally, +it provides a submission URL for adding the disc ID to the database and gathers +ISRCs and the MCN (=UPC/EAN) from disc.") + (license license:lgpl2.1+))) |