gerbera/gerbera.spec
Tomáš Chvátal 3e865342d3 Accepting request 717657 from home:seb95passionlinux:branches:multimedia:apps
- Update to version 1.3.2:
  * Allow to set the manufacturer and the modelURL via config file (#477), thanks @joerg-krause
  * Fix find_program taglib-config when cross-compiling (#476), thanks @joerg-krause
  * Update config-import.rst (#475), thanks @ghlupe2
  * Add Gerbera version to UI (#469), thanks @elmodaddyb
  * cmake/FindFFMPEG: do not quieten messages when using pkg-config (#466), thanks @joerg-krause
  * Fixture upgrade (#465), thanks @elmodaddyb
  * Update js cookie (#464), thanks @elmodaddyb
  * Add virtualUrl to AlbumArt resource for consistent resource URIs (#460), thanks @elmodaddyb
  * Use exiv2 header that include all headers (#457), thanks @nicolas-s
  * Update vendor dependencies (#455), thanks @elmodaddyb
  * Docs: Bump version (#452), thanks @v00d00
  * feat: provide a way to toggle DLNA-seeking with a config (#450), thanks @rtm-ctrlz
  * main: bugfix interface CLI option (#451), thanks @edzius
  * Generate config.xml with XML Declaration (#447), thanks @elmodaddyb

OBS-URL: https://build.opensuse.org/request/show/717657
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/gerbera?expand=0&rev=7
2019-07-23 06:54:51 +00:00

140 lines
4.2 KiB
RPMSpec

#
# spec file for package gerbera
#
# Copyright (c) 2018 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 https://bugs.opensuse.org/
#
Name: gerbera
Version: 1.3.2
Release: 0
Summary: UPnP Media Server
License: GPL-2.0-only
Group: Productivity/Multimedia/Other
URL: https://gerbera.io
Source0: https://github.com/v00d00/gerbera/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Source1: gerbera.conf.in
Source3: gerbera.tmpfile.in
Source4: gerbera.sysusers.in
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: file-devel
BuildRequires: gcc-c++
BuildRequires: gmock
BuildRequires: gtest
BuildRequires: hicolor-icon-theme
BuildRequires: pkgconfig
BuildRequires: pkgconfig(duktape)
BuildRequires: pkgconfig(exiv2)
BuildRequires: pkgconfig(expat)
BuildRequires: pkgconfig(libavcodec)
BuildRequires: pkgconfig(libavformat)
BuildRequires: pkgconfig(libavutil)
BuildRequires: pkgconfig(libcurl)
BuildRequires: pkgconfig(libffmpegthumbnailer)
BuildRequires: pkgconfig(libswscale)
BuildRequires: pkgconfig(libupnp) >= 1.8.3
BuildRequires: pkgconfig(sqlite3)
BuildRequires: pkgconfig(systemd)
BuildRequires: pkgconfig(taglib) >= 1.11
BuildRequires: pkgconfig(uuid)
BuildRequires: pkgconfig(zlib)
%{?systemd_requires}
%description
Gerbera is a UPnP media server which allows you to stream your digital
media through your home network and consume it on a variety of UPnP
compatible devices.
%prep
%setup -q
# server test hardcodes alpha strings
sed -i -e '/test_server/d' test/CMakeLists.txt
cp %{SOURCE1} gerbera.conf.in
for _file in %{SOURCE3} %{SOURCE4}; do
sed -e 's/@USER@/gerbera/' \
-e 's/@GROUP@/gerbera/' \
< $_file > ${_file##*/}
done
%build
%cmake \
-DWITH_AVCODEC=1 \
-DWITH_CURL=1 \
-DWITH_EXIF=0 -DWITH_EXIV2=1 \
-DWITH_JS=1 \
-DWITH_MAGIC=1 \
-DWITH_FFMPEGTHUMBNAILER=1 \
-DWITH_MYSQL=0 \
-DWITH_TAGLIB=1 \
-DWITH_INOTIFY=1 \
-DWITH_TESTS=1 \
-DWITH_SYSTEMD=1 \
-DUPNP_HAS_REUSEADDR=1
make %{?_smp_mflags}
%install
%cmake_install
install -d %{buildroot}%{_sbindir}
ln -s service %{buildroot}%{_sbindir}/rc%{name}
install -Dm 0644 %{name}.tmpfile.in %{buildroot}%{_tmpfilesdir}/%{name}.conf
install -Dm 0644 %{name}.sysusers.in %{buildroot}%{_sysusersdir}/%{name}.conf
install -d %{buildroot}%{_localstatedir}/lib/%{name}
install -Dm 0644 %{name}.conf.in %{buildroot}%{_sysconfdir}/%{name}.conf
touch %{buildroot}%{_localstatedir}/lib/%{name}/{config.xml,%{name}.db,%{name}.html}
%check
%ctest
%pre
getent group gerbera >/dev/null || groupadd -r gerbera
getent passwd gerbera >/dev/null || \
useradd -r -g gerbera -d %{_sysconfdir}/gerbera -s /sbin/nologin \
-c "To run Gerbera" gerbera
%service_add_pre %{name}.service
%post
%service_add_post %{name}.service
%tmpfiles_create %{_tmpfilesdir}/%{name}.conf
%sysusers_create %{_sysusersdir}/%{name}.conf
%preun
%service_del_preun %{name}.service
%postun
%service_del_postun %{name}.service
%files
%license LICENSE.md
%doc AUTHORS CONTRIBUTING.md ChangeLog.md
%{_bindir}/%{name}
%{_datadir}/%{name}/
%{_unitdir}/%{name}.service
%{_sbindir}/rc%{name}
%{_tmpfilesdir}/%{name}.conf
%{_sysusersdir}/%{name}.conf
%{_mandir}/man?/%{name}.?%{?ext_man}
%attr(0660,gerbera,gerbera) %config(noreplace) %{_sysconfdir}/%{name}.conf
%ghost %attr(-,gerbera,gerbera) %dir %{_localstatedir}/lib/%{name}
%ghost %attr(0660,gerbera,gerbera) %{_localstatedir}/lib/%{name}/config.xml
%ghost %attr(0660,gerbera,gerbera) %{_localstatedir}/lib/%{name}/%{name}.db
%ghost %attr(0660,gerbera,gerbera) %{_localstatedir}/lib/%{name}/%{name}.html
%changelog