SHA256
1
0
forked from pool/smplayer
smplayer/smplayer.spec

156 lines
4.7 KiB
RPMSpec
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#
# spec file for package smplayer
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
Name: smplayer
Version: 15.11.0
Release: 0
Summary: Complete frontend for MPV
License: GPL-2.0+
Group: Productivity/Multimedia/Video/Players
Url: http://smplayer.es/
Source0: http://downloads.sf.net/%{name}/%{name}-%{version}.tar.bz2
# PATCH-FIX-OPENSUSE smplayer-makeflags.patch
Patch0: %{name}-makeflags.patch
# PATCH-FEATURE-OPENSUSE smplayer-defaults.patch sor.alexei@meowr.ru -- Use PulseAudio, MPV, and "Tango" icon theme by default.
Patch1: %{name}-defaults.patch
# PATCH-FIX-UPSTREAM smplayer-simple-resize.patch
Patch2: %{name}-simple-resize.patch
# PATCH-FIX-UPSTREAM smplayer-add_kde_protocols_to_desktop_file.patch -- To play network shared video correctly: #PM-48.
Patch3: %{name}-add_kde_protocols_to_desktop_file.patch
BuildRequires: gcc-c++
BuildRequires: hicolor-icon-theme
BuildRequires: libstdc++-devel
BuildRequires: update-desktop-files
BuildRequires: zlib-devel
# Either mpv >= 0.6.2 or MPlayer >= 1.0rc4_r32607.
Requires: mpv >= 0.6.2
Recommends: smplayer-lang
Recommends: smplayer-skins
Suggests: smplayer-themes
Provides: smplayer-core = %{version}
Provides: smplayer-qt5 = %{version}
Obsoletes: smplayer-qt5 < %{version}
Obsoletes: smplayer-qt5-lang < %{version}
%if 0%{?suse_version} > 1320 || 0%{?suse_version} == 1315
BuildRequires: libqt5-qttools-devel
BuildRequires: pkgconfig(Qt5Concurrent)
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5DBus)
BuildRequires: pkgconfig(Qt5Gui)
BuildRequires: pkgconfig(Qt5Network)
BuildRequires: pkgconfig(Qt5PrintSupport)
BuildRequires: pkgconfig(Qt5Script)
BuildRequires: pkgconfig(Qt5Sql)
BuildRequires: pkgconfig(Qt5WebKitWidgets)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(Qt5Xml)
%else
BuildRequires: libkde4-devel
BuildRequires: libqt4-devel
%endif
%description
SMPlayer intends to be a complete front-end for MPV/MPlayer, from
basic features like playing videos, DVDs, and VCDs to more
advanced features like support for MPV filters and more.
One of the most interesting features of SMPlayer: it remembers the
settings of all files you play. So you start to watch a movie but
you have to leave... don't worry, when you open that movie again it
will resume at the same point you left it, and with the same
settings: audio track, subtitles, volume...
%lang_package
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
# Fix CRLF in .txt files.
sed -i 's/\r$//' *.txt
find . -type f -name '*.pro' | while read f; do
cat << EOF >> "$f"
DEFINES += NO_DEBUG_ON_CONSOLE
DEFINES -= SHAREWIDGET
DEFINES -= UPDATE_CHECKER
QMAKE_CFLAGS += %{optflags}
QMAKE_CXXFLAGS += %{optflags}
EOF
done
%build
make \
MAKEFLAGS="%{?_smp_mflags}" \
PREFIX=%{_prefix} \
%if 0%{?suse_version} > 1320 || 0%{?suse_version} == 1315
QMAKE=%{_libqt5_bindir}/qmake \
LRELEASE=%{_libqt5_bindir}/lrelease
%else
KDE_SUPPORT=1
%endif
%install
%make_install \
%if 0%{?suse_version} <= 1320 && 0%{?suse_version} != 1315
KDE_PREFIX=%{_prefix} \
DOC_PATH=%{_docdir}/%{name} \
KDE_INCLUDE_PATH=%{_includedir} \
KDE_LIB_PATH=%{_libdir} \
%endif
PREFIX=%{_prefix} \
DOC_PATH=%{_docdir}/%{name}
rm -rf %{buildroot}%{_docdir}/%{name}/*
# Append Qt; category in desktop files fix for pm#48.
for desktop in smplayer smplayer_enqueue; do
%suse_update_desktop_file -r "$desktop" Qt AudioVideo Video Player
done
%find_lang %{name} --with-qt
%post
%desktop_database_post
%icon_theme_cache_post
%postun
%desktop_database_postun
%icon_theme_cache_postun
%files
%defattr(-,root,root)
%doc Changelog *.txt
%{_bindir}/%{name}
%{_datadir}/applications/%{name}*.desktop
%dir %{_datadir}/icons/hicolor/*/
%dir %{_datadir}/icons/hicolor/*/apps/
%{_datadir}/icons/hicolor/*/apps/%{name}.*
%{_datadir}/%{name}/
%exclude %{_datadir}/%{name}/translations/
%{_mandir}/man?/%{name}.?%{?ext_man}
%files lang -f %{name}.lang
%defattr(-,root,root)
%dir %{_datadir}/%{name}/translations/
%changelog