gnu: ncmpc: Update to 0.32.
* gnu/packages/mpd.scm (ncmpc): Update to 0.32. [inputs]: Add boost, pcre, and python-sphinx. Remove glib. [arguments]: Install the man pages correctly. Remove unnecessary configure flag.
This commit is contained in:
parent
247537da81
commit
cd220e60da
|
@ -47,6 +47,7 @@
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages mp3)
|
#:use-module (gnu packages mp3)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
|
#:use-module (gnu packages pcre)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages pulseaudio)
|
#:use-module (gnu packages pulseaudio)
|
||||||
|
@ -186,7 +187,7 @@ player daemon.")
|
||||||
(define-public ncmpc
|
(define-public ncmpc
|
||||||
(package
|
(package
|
||||||
(name "ncmpc")
|
(name "ncmpc")
|
||||||
(version "0.30")
|
(version "0.32")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
|
@ -195,11 +196,14 @@ player daemon.")
|
||||||
"/ncmpc-" version ".tar.xz"))
|
"/ncmpc-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"18qj3cgqczgfk334x0ywxwa1ckrk9fbjyp34n4zzcxwaifshrzp3"))))
|
"1b01q1pcaw5yyhvmlffc3h0r3w8qy7rhn55a7xj4qkcfqvs8ap08"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list "-Dcurses=ncurses")
|
;; Otherwise, they are installed incorrectly, in
|
||||||
|
;; '$out/share/man/man/man1'.
|
||||||
|
(list (string-append "-Dmandir=" (assoc-ref %outputs "out")
|
||||||
|
"/share"))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'expand-C++-include-path
|
(add-before 'configure 'expand-C++-include-path
|
||||||
|
@ -211,11 +215,13 @@ player daemon.")
|
||||||
(setenv path (string-append c++ ":" (getenv path)))
|
(setenv path (string-append c++ ":" (getenv path)))
|
||||||
#t))))))
|
#t))))))
|
||||||
(inputs `(("gcc", gcc-8) ; for its C++14 support
|
(inputs `(("gcc", gcc-8) ; for its C++14 support
|
||||||
("glib" ,glib)
|
("boost" ,boost)
|
||||||
|
("pcre" ,pcre)
|
||||||
("libmpdclient" ,libmpdclient)
|
("libmpdclient" ,libmpdclient)
|
||||||
("ncurses" ,ncurses)))
|
("ncurses" ,ncurses)))
|
||||||
(native-inputs `(("gettext" ,gettext-minimal) ; for xgettext
|
(native-inputs `(("gettext" ,gettext-minimal) ; for xgettext
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)
|
||||||
|
("python-sphinx" ,python-sphinx)))
|
||||||
(synopsis "Curses Music Player Daemon client")
|
(synopsis "Curses Music Player Daemon client")
|
||||||
(description "ncmpc is a fully featured MPD client, which runs in a
|
(description "ncmpc is a fully featured MPD client, which runs in a
|
||||||
terminal using ncurses.")
|
terminal using ncurses.")
|
||||||
|
|
Loading…
Reference in New Issue