[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] gnu: Add mpdscribble.
From: |
David Thompson |
Subject: |
[PATCH] gnu: Add mpdscribble. |
Date: |
Sat, 28 Feb 2015 14:26:57 -0500 |
User-agent: |
Notmuch/0.18.2 (http://notmuchmail.org) Emacs/24.4.1 (x86_64-pc-linux-gnu) |
>From f0c0cae0aef184c6bb1d9340334ca1601113e1eb Mon Sep 17 00:00:00 2001
From: David Thompson <address@hidden>
Date: Sat, 28 Feb 2015 14:24:52 -0500
Subject: [PATCH] gnu: Add mpdscribble.
* gnu/packages/mpd.scm (mpdscribble): New variable.
---
gnu/packages/mpd.scm | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 2d7ca6e..05fdaf1 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014 David Thompson <address@hidden>
+;;; Copyright © 2014, 2015 David Thompson <address@hidden>
;;; Copyright © 2014 Andreas Enge <address@hidden>
;;; Copyright © 2014 Cyrill Schenkel <address@hidden>
;;; Copyright © 2014 Ian Denhardt <address@hidden>
@@ -211,3 +211,25 @@ for library searches, extended song format, items
filtering, the ability to
sort playlists, and a local filesystem browser.")
(home-page "http://ncmpcpp.rybczak.net/")
(license license:gpl2+)))
+
+(define-public mpdscribble
+ (package
+ (name "mpdscribble")
+ (version "0.22")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
"http://www.musicpd.org/download/mpdscribble/"
+ version "/mpdscribble-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0f0ybx380x2z2g1qvdndpvcrhkrgsfqckhz3ryydq2w3pl12v27z"))))
+ (build-system gnu-build-system)
+ (inputs `(("libmpdclient" ,libmpdclient)
+ ("curl" ,curl)
+ ("glib" ,glib)))
+ (native-inputs `(("pkg-config" ,pkg-config)))
+ (synopsis "MPD client for track scrobbling")
+ (description "mpdscribble is a Music Player Daemon client which submits
+information about tracks being played to a scrobbler, such as Libre.FM.")
+ (home-page "http://mpd.wikia.com/wiki/Client:Mpdscribble")
+ (license license:gpl2+)))
--
2.1.4
--
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate
- [PATCH] gnu: Add mpdscribble.,
David Thompson <=