Download this file

setup.py    22 lines (20 with data), 799 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
#
from distutils.core import setup
import subprocess
#import build_i18n_ext as build_i18n
setup(name="unity-scope-recoll",
version="0.1",
author="Jean-Francois Dockes",
author_email="jfd@recoll.corg",
url="http://www.recoll.org",
license="GNU General Public License v3 (GPLv3)",
data_files=[
('share/unity-scopes/recollscope', ['unity_recoll_daemon.py']),
('share/unity-scopes/recollscope', ['__init__.py']),
('share/applications', ['unity-scope-recoll.desktop']),
('share/dbus-1/services', ['unity-scope-recoll.service']),
('share/icons/hicolor/48x48/apps', ['unity-scope-recoll.png']),
('share/unity/scopes/files', ['recoll.scope']),
('share/icons/unity-icon-theme/places/svg', ['service-recoll.svg']),
])