* Fix compilation with libc++.
* Remove autogen.sh in favour of autoreconf.
* Do not crash when trying to reverse an empty playlist.
- update to 0.10
* Add the configuration option mpd_password.
* Separate chunks of lyrics with a double newline.
* Fix separator between albums with the same name, to check for album
artist instead of artist.
* Column widths are now configurable via media_library_column_width_ratio_two,
media_library_column_width_ratio_three and playlist_editor_column_width_ratio.
* Removed deprecated visualizer_fifo_path and visualizer_sync_interval options.
* Added support for italic text.
* Framerate limit for visualizer was removed.
* Performer tag is now read from the TPE4 frame instead of TPE3.
* Potential crash when fetching lyrics for streams in the background was fixed.
* Seeking now accepts the hh:mm:ss format.
* Tag editor now only writes to files with modified tags.
* Column view can now display full filepaths.
* Updated the list of working lyrics fetchers.
* Add visualizer_spectrum_smooth_look_legacy_chars option (enabled by default)
for potentially improved bottom part of the spectrum visualizer in terminals
with transparent background.
* Add support for fetching lyrics from tags.
- Update boost.m4 to fix build with Boost >= 1.89 [gh#ncmpcpp/ncmpcpp#636]
* ncmpcpp-boost-1.89.patch
- Remove upstreamed 0001-Fix-compilation-with-taglib-2.0.patch
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/ncmpcpp?expand=0&rev=26
81 lines
2.4 KiB
RPMSpec
81 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package ncmpcpp
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: ncmpcpp
|
|
Version: 0.10.1
|
|
Release: 0
|
|
Summary: Music Player Daemon Client
|
|
License: GPL-2.0-only
|
|
Group: Productivity/Multimedia/Sound/Players
|
|
URL: https://rybczak.net/ncmpcpp
|
|
Source: https://github.com/ncmpcpp/ncmpcpp/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM
|
|
Patch1: ncmpcpp-boost-1.88.patch
|
|
# PATCH-FIX-OPENSUSE - https://github.com/ncmpcpp/ncmpcpp/pull/636
|
|
Patch2: ncmpcpp-boost-1.89.patch
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: boost-devel
|
|
BuildRequires: curl-devel
|
|
BuildRequires: fftw-devel
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libboost_filesystem-devel
|
|
BuildRequires: libboost_headers-devel
|
|
BuildRequires: libboost_locale-devel
|
|
BuildRequires: libboost_program_options-devel
|
|
BuildRequires: libboost_regex-devel
|
|
BuildRequires: (libboost_system-devel if boost-devel < 1.69)
|
|
BuildRequires: libboost_thread-devel
|
|
BuildRequires: libtag-devel
|
|
BuildRequires: libtool
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(libmpdclient)
|
|
BuildRequires: pkgconfig(ncursesw)
|
|
BuildRequires: pkgconfig(readline)
|
|
Requires: mpd > 0.16
|
|
|
|
%description
|
|
ncmpcpp is an ncurses client for MPD (Music Player Daemon), inspired
|
|
by ncmpc. It features a tag editor, playlist editor, search engine,
|
|
media library, music visualizer, a last.fm artist database
|
|
information fetcher and an alternative user interface.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
autoreconf -fiv
|
|
%configure \
|
|
--enable-clock \
|
|
--enable-outputs \
|
|
--enable-visualizer
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
rm -r "%{buildroot}%{_datadir}/doc"
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc AUTHORS CHANGELOG.md doc/config doc/bindings
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
|
|
|
%changelog
|