From 7da9e792e453347c21bb729a7b109a3ef2698c7b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 13 Jan 2018 20:42:52 +0100 Subject: gnu: libmpdclient: Update to 2.13. * gnu/packages/mpd.scm (libmpdclient): Update to 2.13. [build-system]: Switch to meson-build-system. [native-inputs]: Add pkg-config and check. [arguments]: Enable tests and build documentation. --- gnu/packages/mpd.scm | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'gnu/packages/mpd.scm') diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index e6bc2b4e71..2a0f1f018c 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2014 Ian Denhardt ;;; Copyright © 2015 Paul van der Walt ;;; Copyright © 2016 Leo Famulari +;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; @@ -28,6 +29,7 @@ #:use-module (guix download) #:use-module (guix utils) #:use-module (guix build-system gnu) + #:use-module (guix build-system meson) #:use-module (guix build-system python) #:use-module (gnu packages avahi) #:use-module (gnu packages boost) @@ -55,7 +57,7 @@ (define-public libmpdclient (package (name "libmpdclient") - (version "2.11") + (version "2.13") (source (origin (method url-fetch) (uri @@ -64,9 +66,20 @@ "/libmpdclient-" version ".tar.xz")) (sha256 (base32 - "1xms8q44g6zc7sc212qpcihq6ch3pmph3i1m9hzymmy0jcw6kzhm")))) - (build-system gnu-build-system) - (native-inputs `(("doxygen" ,doxygen))) + "0pflbv2jzik7yxnacci1iqs0awy1i5ipwn67xk0hg9r0pi9bs5ai")))) + (build-system meson-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + + ;; For building HTML documentation. + ("doxygen" ,doxygen) + + ;; For tests. + ("check" ,check))) + (arguments + `(#:configure-flags + (list "-Ddocumentation=true" + "-Dtest=true"))) (synopsis "Music Player Daemon client library") (description "A stable, documented, asynchronous API library for interfacing MPD in the C, C++ & Objective C languages.") -- cgit v1.2.3