blob: f197a22f3c7831b96baa349b431eab8312ac709a (
plain)
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
|
Name: remotecontrol
Version: 0.0.1
Release: 1
Group: System/Libraries
License: Apache-2.0
Url: https://github.com/otcshare/remotecontrol
Summary: Remote Control App
Source: remotecontrol-%{version}.tar.bz2
BuildRequires: pkgconfig(python)
BuildRequires: python-setuptools
Requires: python
Requires: dbus-python
Requires: pygobject
Requires: python-autobahn
Requires: python-netifaces
Requires: python-simplejson
Requires: pocketsphinx
Requires: pocketsphinx-plugin
Requires: gstreamer-python
Requires: gst-plugins-good
Requires: festival
%description
Remote control daemon with websocket API for IVI.
%prep
%setup -q -n remotecontrol-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
%doc README
%{python_sitelib}/*
%{_bindir}/start-remoteserver
|