File pulseaudio-dlna.spec of Package pulseaudio-dlna (Revision 76d4363ab076e6514759062049fbba17)
Currently displaying revision 76d4363ab076e6514759062049fbba17 , Show latest
73
1
#
2
# spec file for package pulseaudio-dlna
3
#
4
# Copyright (c) 2015 Packman Team <packman@links2linux.de>
5
#
6
# All modifications and additions to the file contributed by third parties
7
# remain the property of their copyright owners, unless otherwise agreed
8
# upon. The license for this file, and modifications and additions to the
9
# file, is the same license as for the pristine package itself (unless the
10
# license for the pristine package is not an Open Source License, in which
11
# case the license is the MIT License). An "Open Source License" is a
12
# license that conforms to the Open Source Definition (Version 1.9)
13
# published by the Open Source Initiative.
14
15
# Please submit bugfixes or comments via http://bugs.links2linux.org/
16
#
17
18
19
Name: pulseaudio-dlna
20
Version: 0.4.3
21
Release: 0
22
Summary: A DLNA server which brings DLNA/UPnP support to PulseAudio
23
License: GPL-3.0
24
Group: Productivity/Multimedia/Sound/Utilities
25
Url: https://github.com/masmu/%{name}
26
Source: https://github.com/masmu/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
27
BuildRequires: python-setuptools
28
Requires: dbus-1-python >= 1.2.0
29
Requires: faac >= 1.28
30
Requires: flac >= 1.3.0
31
Requires: lame >= 3.99.0
32
Requires: opus-tools >= 0.1.8
33
Requires: pulseaudio
34
Requires: python == 2.7
35
Requires: python-beautifulsoup >= 3.2.1
36
Requires: python-docopt >= 0.6.1
37
Requires: python-gobject >= 3.12.0
38
Requires: python-notify2 >= 0.3
39
Requires: python-protobuf >= 2.5.0
40
Requires: python-requests >= 2.2.1
41
Requires: python-setproctitle >= 1.0.1
42
Requires: sox >= 14.4.1
43
Requires: vorbis-tools >= 1.4.0
44
BuildRoot: %{_tmppath}/%{name}-%{version}-build
45
BuildArch: noarch
46
47
%description
48
This is pulseaudio-dlna. A small DLNA server which brings DLNA / UPnP and
49
Chromecast support to PulseAudio and Linux.
50
51
It can stream your current PulseAudio playback to different UPnP devices (UPnP
52
Media Renderers) in your network. It's main goals are: easy to use, no
53
configuration hassle, no big dependencies.
54
55
%prep
56
%setup -q
57
58
%build
59
python setup.py build
60
61
%install
62
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
63
64
%files
65
%defattr(-,root,root)
66
%doc debian/changelog README.md LICENSE
67
%{_bindir}/%{name}
68
%{python_sitelib}/pulseaudio_dlna-%{version}-py%{py_ver}.egg-info/
69
%{python_sitelib}/pulseaudio_dlna/
70
%{_mandir}/man1/%{name}.1%{?ext_man}
71
72
%changelog
73