-
Notifications
You must be signed in to change notification settings - Fork 0
/
telescreen.spec
74 lines (53 loc) · 1.64 KB
/
telescreen.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Name: telescreen
Version: 0.3.1
Release: 1%{?dist}
Summary: Digital signage player for GNOME
Group: Applications/Multimedia
License: MIT
URL: https://github.com/techlib/telescreen
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildArch: noarch
Source0: %{name}-%{version}.tar.gz
BuildRequires: python3
BuildRequires: python3-rpm-macros
Requires: python3
Requires: python3-twisted
Requires: python3-simplejson
Requires: python3-jsonschema
Requires: python3-PyYAML
Requires: python3-gstreamer1
Requires: python3-gobject
Requires: python3-zmq
Requires: gobject-introspection
Requires: gtk3
Requires: webkitgtk4
Requires: gdk-pixbuf2
Requires: gstreamer1
Requires: gstreamer1-plugins-base
Requires: libcec
%define debug_package %{nil}
%description
This software aims to greatly simplify management of digital information
screens in libraries and similar institutions.
%prep
%setup -q -n %{name}-%{version}
%build
%{__python3} setup.py build
%install
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
%check
#%{__python} setup.py test
%clean
rm -rf %{buildroot}
%files
%defattr(644,root,root,755)
%doc LICENSE.md README.md
%{python3_sitelib}/*
%attr(755,root,root) %{_bindir}/*
%changelog
* Tue Feb 27 2018 Daniel Staněk <[email protected]> - 0.3.0-1
- Added stream playback support
* Thu Mar 16 2017 Jan Dvořák <[email protected]> - 0.2.0-1
- First stable release
* Mon Dec 19 2016 Jan Dvořák <[email protected]> - 0.1.0-1
- Initial release