From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH] gnu: Add mpdscribble. Date: Sat, 28 Feb 2015 14:26:57 -0500 Message-ID: <87oaod7s72.fsf@fsf.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRn2R-0003D8-K7 for guix-devel@gnu.org; Sat, 28 Feb 2015 14:27:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YRn2Q-0005qn-FW for guix-devel@gnu.org; Sat, 28 Feb 2015 14:26:59 -0500 Received: from mail.fsf.org ([208.118.235.13]:41224) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YRn2Q-0005qi-C3 for guix-devel@gnu.org; Sat, 28 Feb 2015 14:26:58 -0500 Received: from 209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.40.86]:54339 helo=izanagi) by mail.fsf.org with esmtpsa (TLS-1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1YRn2P-0005zo-W9 for guix-devel@gnu.org; Sat, 28 Feb 2015 14:26:58 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-mpdscribble.patch Content-Transfer-Encoding: quoted-printable >From f0c0cae0aef184c6bb1d9340334ca1601113e1eb Mon Sep 17 00:00:00 2001 From: David Thompson 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 =C2=A9 2014 David Thompson +;;; Copyright =C2=A9 2014, 2015 David Thompson ;;; Copyright =C2=A9 2014 Andreas Enge ;;; Copyright =C2=A9 2014 Cyrill Schenkel ;;; Copyright =C2=A9 2014 Ian Denhardt @@ -211,3 +211,25 @@ for library searches, extended song format, items filt= ering, 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/mpdscri= bble/" + 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+))) --=20 2.1.4 --=-=-= Content-Type: text/plain -- David Thompson Web Developer - Free Software Foundation - http://fsf.org GPG Key: 0FF1D807 Support the FSF: https://fsf.org/donate --=-=-=--