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
|
#!/usr/bin/python
from distutils.core import setup
import subprocess, glob, os.path
mo_files = []
# HACK: make sure that the mo files are generated and up-to-date
subprocess.call(['make', '-C', 'po', 'build-mo'])
for filepath in glob.glob("po/mo/*/LC_MESSAGES/*.mo"):
lang = filepath[len("po/mo/"):]
targetpath = os.path.dirname(os.path.join("share/locale",lang))
mo_files.append((targetpath, [filepath]))
setup(name='apport',
author='Martin Pitt',
author_email='martin.pitt@ubuntu.com',
maintainer='Martin Pitt',
maintainer_email='martin.pitt@ubuntu.com',
url='https://wiki.ubuntu.com/apport',
license='gpl',
description='read, write, and modify problem reports',
py_modules=['problem_report', 'apport_python_hook'],
data_files=[('share/apport', ['gtk/apport-gtk.glade'] + glob.glob('qt4/*.ui')),
('share/icons/hicolor/scalable/apps', ['apport/apport.svg']),
('share/mime/packages', glob.glob('xdg-mime/*')),
('share/apport/testsuite/', ['test-apport', 'test-hooks', 'run-tests']),
('share/doc/apport/', glob.glob('doc/*.txt') + glob.glob('doc/*.pdf')),
('share/apport/package-hooks/', glob.glob('package-hooks/*')),
('/etc/apport/', ['crashdb.conf'])]+mo_files,
scripts=['bin/apport', 'bin/apport-checkreports', 'bin/apport-retrace',
'bin/apport-unpack', 'bin/apport-chroot', 'bin/package_hook',
'bin/kernel_hook', 'gtk/apport-gtk', 'qt4/apport-qt', 'cli/apport-cli'],
packages=['apport', 'apport.crashdb_impl']
)
|