43 lines
1.0 KiB
Python
43 lines
1.0 KiB
Python
'''
|
|
Created on 20 oct. 2012
|
|
|
|
@author: coissac
|
|
'''
|
|
|
|
from distutils.command.build import build as ori_build
|
|
from obidistutils.serenity.checksystem import is_mac_system
|
|
|
|
|
|
class build(ori_build):
|
|
|
|
def has_ctools(self):
|
|
return self.distribution.has_ctools()
|
|
|
|
def has_files(self):
|
|
return self.distribution.has_files()
|
|
|
|
def has_executables(self):
|
|
return self.distribution.has_executables()
|
|
|
|
def has_ext_modules(self):
|
|
return self.distribution.has_ext_modules()
|
|
|
|
def has_littlebigman(self):
|
|
return True
|
|
|
|
def has_pidname(self):
|
|
return is_mac_system()
|
|
|
|
def has_doc(self):
|
|
return True
|
|
|
|
|
|
sub_commands = [('littlebigman', has_littlebigman),
|
|
('pidname',has_pidname),
|
|
('build_ctools', has_ctools),
|
|
('build_files', has_files),
|
|
('build_cexe', has_executables)] \
|
|
+ ori_build.sub_commands + \
|
|
[('build_sphinx',has_doc)]
|
|
|