]> git.pld-linux.org Git - packages/ncmpcpp.git/blob - ncmpcpp.spec
up to 0.8.1
[packages/ncmpcpp.git] / ncmpcpp.spec
1 Summary:        ncurses mpd client inspired by ncmpc
2 Summary(pl.UTF-8):      klient mpd wzorowany na ncmpc
3 Name:           ncmpcpp
4 Version:        0.8.1
5 Release:        1
6 License:        GPL v2
7 Group:          Applications
8 Source0:        http://ncmpcpp.rybczak.net/stable/%{name}-%{version}.tar.bz2
9 # Source0-md5:  f0797e8dc6e5a5688efdee3844f4a974
10 URL:            http://ncmpcpp.rybczak.net
11 BuildRequires:  autoconf >= 2.59
12 BuildRequires:  automake
13 BuildRequires:  boost-devel
14 BuildRequires:  curl-devel
15 BuildRequires:  fftw3-devel
16 BuildRequires:  gcc-c++ >= 6:4.6
17 BuildRequires:  libmpdclient-devel >= 2.8
18 BuildRequires:  libstdc++-devel
19 BuildRequires:  libtool
20 BuildRequires:  ncurses-devel
21 BuildRequires:  pkgconfig
22 BuildRequires:  readline-devel
23 BuildRequires:  taglib-devel
24 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
25
26 %description
27 Ncmpcpp has UI very similar to ncmpc's one, but it provides new useful
28 features such as support for regular expressions in search engine,
29 extended song format, items filtering, last.fm support, ability to
30 sort playlist, local filesystem browser and other minor functions.
31
32 %description -l pl.UTF-8
33 Ncmpcpp posiada bardzo podobny interfejs użytkownika do tego znanego z
34 ncmpc, ale wspiera dodatkowo obsługę wyrażeń regularnych w wewnętrznej
35 wyszukiwarce, rozszerzony format piosenek, filtrowanie pozycji,
36 obsługę last.fm, umożliwia sortowanie playlisty, posiada przeglądarkę
37 plików lokalnych oraz inne drobne udogodnienia.
38
39 %prep
40 %setup -q
41
42 %build
43 %{__libtoolize}
44 %{__aclocal}
45 %{__autoconf}
46 %{__autoheader}
47 %{__automake}
48 %configure \
49         BOOST_LIB_SUFFIX="" \
50         --enable-clock \
51         --enable-outputs \
52         --enable-unicode \
53         --enable-visualizer
54 %{__make}
55
56 %install
57 rm -rf $RPM_BUILD_ROOT
58
59 %{__make} install \
60         DESTDIR=$RPM_BUILD_ROOT
61
62 # clean up bogus docdir
63 %{__rm} -r $RPM_BUILD_ROOT%{_docdir}/%{name}
64
65 %clean
66 rm -rf $RPM_BUILD_ROOT
67
68 %files
69 %defattr(644,root,root,755)
70 %doc AUTHORS COPYING NEWS doc/bindings doc/config
71 %attr(755,root,root) %{_bindir}/ncmpcpp
72 %{_mandir}/man1/ncmpcpp.1*
This page took 0.111193 seconds and 3 git commands to generate.