forked from xerxes2/panucci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
96 lines (83 loc) · 3.31 KB
/
setup.py
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env python
#
# This file is part of Panucci.
# Copyright (c) 2008-2011 The Panucci Project
#
# Panucci is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Panucci is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Panucci. If not, see <http://www.gnu.org/licenses/>.
from distutils.core import setup
import glob
import os
import sys
SRC_DIR = 'src/'
d2p = lambda d: d[len(SRC_DIR):].replace('/', '.')
PACKAGES = [d2p(d) for d, dd, ff in os.walk(SRC_DIR) if '__init__.py' in ff]
SCRIPTS = glob.glob('bin/*')
if not os.path.exists('panucci.service') and \
'clean' not in sys.argv and 'sdist' not in sys.argv:
print >>sys.stderr, """
build/panucci.service not found. Maybe you want to run
"make install" instead of using setup.py directly?
"""
sys.exit(1)
DATA_FILES = [
('share/panucci/icons', glob.glob('icons/*.png')),
('share/panucci/qml', glob.glob('data/ui/qml/*.qml')),
('share/panucci/qml', glob.glob('data/ui/qml/*.js')),
('share/panucci/qml2', glob.glob('data/ui/qml2/*.qml')),
('share/panucci/qml2', glob.glob('data/ui/qml2/*.js')),
('share/panucci', ['data/panucci.conf', 'data/default.conf', 'data/theme.conf']),
('share/applications', ['data/panucci.desktop']),
('share/pixmaps', ['data/panucci.png']),
('share/icons/hicolor/scalable/apps', ['data/panucci.svg']),
('share/icons/hicolor/64x64/apps', ['data/panucci.png']),
('share/dbus-1/services', ['panucci.service']),
]
mo_files = glob.glob('build/locale/*/LC_MESSAGES/panucci.mo')
if len(mo_files) == 0:
print >>sys.stderr, """
Warning: No translation files found. Maybe you want to
run "make install" instead of using setup.py directly?
"""
for mofile in mo_files:
modir = os.path.dirname(mofile).replace('build', 'share')
DATA_FILES.append((modir, [mofile]))
sys.path.insert(0, SRC_DIR)
import panucci
setup(
name='panucci',
version=panucci.__version__,
description='Resuming audiobook and podcast player',
author='Jens Persson',
author_email='[email protected]',
url='http://gpodder.org/panucci/',
packages=PACKAGES,
package_dir={ '': SRC_DIR },
scripts=SCRIPTS,
data_files=DATA_FILES,
license="GPL3"
)
if "install" in sys.argv:
_prefix = "/usr"
_rootdir = "/"
for i in sys.argv:
if i.startswith("--prefix"):
_prefix = i[9:]
elif i.startswith("--root"):
_rootdir = i[7:]
if os.path.exists(_rootdir + _prefix + "/share/panucci/qml/artwork"):
os.remove(_rootdir + _prefix + "/share/panucci/qml/artwork")
os.symlink("../icons", _rootdir + _prefix + "/share/panucci/qml/artwork")
if os.path.exists(_rootdir + _prefix + "/share/panucci/qml2/artwork"):
os.remove(_rootdir + _prefix + "/share/panucci/qml2/artwork")
os.symlink("../icons", _rootdir + _prefix + "/share/panucci/qml2/artwork")