]> git.pld-linux.org Git - packages/clementine.git/blame - clementine.spec
- initial up to 0.3
[packages/clementine.git] / clementine.spec
CommitLineData
2c687024 1# TODO:
2# - update patch0
3# - add missing BRs
4#
5# Conditional build:
6%bcond_without engine_xine # without xine engine
7%bcond_without engine_vlc # without vlc engine
8%bcond_without engine_qt-phonon # without qt-phonon engine
9%bcond_without engine_gstreamer # without gstreamer engine
10#
bf1e6952
ER
11Summary: A music player and library organiser
12Name: clementine
2c687024 13Version: 0.3
14Release: 0.1
bf1e6952
ER
15License: GPL v3 and GPL v2+
16Group: Applications/Multimedia
17URL: http://code.google.com/p/clementine-player
2c687024 18Source0: http://clementine-player.googlecode.com/files/%{name}-%{version}.tar.gz
19# Source0-md5: 3aff98e41d9bf96717ecf97c780ef086
bf1e6952
ER
20Patch0: %{name}-dont-bundle-external-lib.patch
21Patch1: %{name}-static.patch
7279ad3f 22Patch2: desktop-install.patch
b6199a83 23BuildRequires: QtCore-devel
24BuildRequires: QtDBus-devel
25BuildRequires: QtGui-devel
26BuildRequires: QtNetwork-devel
27BuildRequires: QtOpenGL-devel
88ca6f4b 28BuildRequires: QtSingleApplication-devel
b6199a83 29BuildRequires: QtSql-devel
30BuildRequires: QtTest-devel
bf1e6952 31BuildRequires: boost-devel
7279ad3f 32BuildRequires: cmake >= 2.6
bf1e6952
ER
33BuildRequires: desktop-file-utils
34BuildRequires: gtest-devel
35BuildRequires: liblastfm-devel
36BuildRequires: libnotify-devel
37BuildRequires: libqxt-devel
38BuildRequires: notification-daemon
39BuildRequires: qt4-build
b6199a83 40BuildRequires: qt4-linguist
41BuildRequires: qt4-qmake
726826ed 42BuildRequires: rpmbuild(macros) >= 1.198
bf1e6952
ER
43BuildRequires: sed >= 4.0
44BuildRequires: sqlite-devel
b6199a83 45BuildRequires: sqlite3-devel
bf1e6952
ER
46BuildRequires: taglib-devel
47BuildRequires: xine-lib-devel
726826ed 48Requires(post,postun): desktop-file-utils
bf1e6952
ER
49BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
50
51%description
52Clementine is a modern music player and library organiser. It is
53largely a port of Amarok 1.4, with some features rewritten to take
54advantage of Qt4.
55
56%prep
57%setup -q
2c687024 58#%patch0 -p1
bf1e6952 59%patch1 -p1
7279ad3f 60%patch2 -p1
bf1e6952
ER
61
62# We already don't use these but just to make sure
2c687024 63#rm -fr 3rdparty
bf1e6952 64
7279ad3f
ER
65# Don't build tests. They require gmock
66sed -i -e '/tests/d' CMakeLists.txt
bf1e6952
ER
67
68%build
69install -d build
70cd build
88ca6f4b
ER
71%cmake \
72 -DCMAKE_INSTALL_PREFIX=%{_prefix} \
2c687024 73 -DENGINE_GSTREAMER_ENABLED=%{?with_engine_gstreamer:ON}%{!?with_engine_gstreamer:OFF} \
74 -DENGINE_LIBVLC_ENABLED=%{?with_engine_vlc:ON}%{!?with_engine_vlc:OFF} \
75 -DENGINE_LIBXINE_ENABLED=%{?with_engine_xine:ON}%{!?with_engine_xine:OFF} \
76 -DENGINE_QT_PHONON_ENABLED=%{?with_engine_qt-phonon:ON}%{!?with_engine_qt-phonon:OFF} \
88ca6f4b 77 ..
bf1e6952
ER
78%{__make}
79
80%install
81rm -rf $RPM_BUILD_ROOT
82%{__make} -C build install \
83 DESTDIR=$RPM_BUILD_ROOT
84
85%clean
86rm -rf $RPM_BUILD_ROOT
87
726826ed
ER
88%post
89%update_desktop_database_post
90
91%postun
92%update_desktop_database_postun
93
bf1e6952
ER
94%files
95%defattr(644,root,root,755)
96%doc Changelog TODO
97%attr(755,root,root) %{_bindir}/clementine
98%{_desktopdir}/clementine.desktop
7279ad3f 99%{_pixmapsdir}/clementine.png
This page took 0.084932 seconds and 4 git commands to generate.