7 from os
.path
import join
11 """Runs version.sh and returns the output."""
12 cmd
= join(os
.getcwd(), 'scripts', 'version.sh')
16 return version
.strip()
18 #############################################################################
21 VERSION
= get_version()
26 #############################################################################
29 opt
.tool_options('python')
30 opt
.tool_options('pyuic4', 'build')
33 #############################################################################
36 conf
.check_tool('misc')
37 conf
.check_tool('python')
38 conf
.check_tool('pyuic4', 'build')
39 conf
.check_tool('po2qm', 'build')
42 prefix
= env
['PREFIX']
43 bindir
= join(prefix
, 'bin')
44 share
= join(prefix
, 'share')
45 modules
= join(share
, 'ugit')
46 views
= join(modules
, 'views')
47 controllers
= join(modules
, 'controllers')
48 icons
= join(prefix
, 'share', 'ugit', 'icons')
49 apps
= join(prefix
, 'share', 'applications')
51 env
['UGIT_BINDIR'] = bindir
52 env
['UGIT_MODULES'] = modules
53 env
['UGIT_VIEWS'] = views
54 env
['UGIT_CONTROLLERS'] = controllers
55 env
['UGIT_ICONS'] = icons
56 env
['UGIT_APPS'] = apps
62 ERROR: could not "import git"
64 Please install the python-git package
65 or grab GitPython from the cheeseshop:
67 http://pypi.python.org/pypi/GitPython
70 GitPython's git repository can be cloned from gitorious:
72 http://gitorious.org/projects/git-python
76 #############################################################################
85 qm
= bld
.create_obj('po2qm')
86 qm
.find_sources_in_dirs('po')
88 for icon
in glob
.glob('icons/*.png'):
89 Common
.install_files('UGIT_ICONS', '', icon
)
91 #############################################################################
94 # always re-create the version.py file
95 for variant
in Params
.g_build
.m_allenvs
:
96 version_file
= join(Params
.g_build
.m_bdir
,
97 variant
, 'scripts', 'version.py')
98 if os
.path
.exists(version_file
):
99 os
.unlink(version_file
)