Add the gpodder.gtkui module when installing gPodder (bug 534)
[gpodder.git] / setup.py
blob93f4a9dd29eaef9e2af2a706ecaa454176c0009f
1 #!/usr/bin/env python
4 # gPodder - A media aggregator and podcast client
5 # Copyright (c) 2005-2009 Thomas Perl and the gPodder Team
7 # gPodder is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # gPodder is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 import glob
22 import os
23 import re
24 import sys
25 from distutils.core import setup
27 # build targets
28 (DEFAULT, MAEMO) = range(2)
30 # import the gpodder module locally for module metadata
31 sys.path.insert(0, 'src')
32 import gpodder
34 # build target
35 if 'TARGET' in os.environ:
36 if os.environ['TARGET'].strip().lower() == 'maemo':
37 target = MAEMO
38 else:
39 target = DEFAULT
41 # search for translations and repare to install
42 translation_files = []
43 for mofile in glob.glob('data/locale/*/LC_MESSAGES/gpodder.mo'):
44 modir = os.path.dirname(mofile).replace('data', 'share')
45 translation_files.append((modir, [mofile]))
47 if not len(translation_files) and not 'clean' in sys.argv:
48 print >>sys.stderr, """
49 Warning: No translation files. (Did you forget to run "make messages"?)
50 """
52 # files to install
53 inst_manpages = glob.glob( 'doc/man/*.1')
54 inst_share_ui = glob.glob('data/ui/*.ui')
55 inst_desktop = [ 'data/gpodder.desktop' ]
56 inst_desktop_maemo = [ 'data/maemo/gpodder.desktop' ]
58 inst_icons = [ 'data/gpodder.png' ]
59 inst_icons_64 = [ 'data/icons/64/gpodder.png' ]
60 inst_icons_40 = [ 'data/icons/40/gpodder.png' ]
61 inst_icons_26 = [ 'data/icons/26/gpodder.png' ]
62 inst_icons_24 = [ 'data/icons/24/gpodder.png' ]
63 inst_icons_22 = [ 'data/icons/22/gpodder.png' ]
64 inst_icons_16 = [ 'data/icons/16/gpodder.png' ]
65 inst_icons_svg = [ 'data/gpodder.svg' ]
67 data_files = [
68 ('share/man/man1', inst_manpages),
69 ('share/gpodder/ui', inst_share_ui),
70 ('share/pixmaps', inst_icons),
73 # target-specific installation data files
74 if target == DEFAULT:
75 data_files += [
76 ('share/applications', inst_desktop),
77 ('share/icons/hicolor/scalable/apps', inst_icons_svg),
78 ('share/icons/hicolor/48x48/apps', inst_icons),
79 ('share/icons/hicolor/24x24/apps', inst_icons_24),
80 ('share/icons/hicolor/22x22/apps', inst_icons_22),
81 ('share/icons/hicolor/16x16/apps', inst_icons_16),
83 elif target == MAEMO:
84 data_files += [
85 ('share/applications/hildon', inst_desktop_maemo),
86 ('share/icons/hicolor/scalable/apps', inst_icons_64),
87 ('share/icons/hicolor/40x40/apps', inst_icons_40),
88 ('share/icons/hicolor/26x26/apps', inst_icons_26),
91 author, email = re.match(r'^(.*) <(.*)>$', gpodder.__author__).groups()
93 setup(
94 name = 'gpodder',
95 version = gpodder.__version__,
96 package_dir = { '':'src' },
97 packages = [ 'gpodder', 'gpodder.gtkui' ],
98 description = 'media aggregator',
99 author = author,
100 author_email = email,
101 url = gpodder.__url__,
102 scripts = glob.glob('bin/*'),
103 data_files = data_files + translation_files