3 '''A build system has three methods: "configure" (with optionak "force" parameter), "build" and "install"'''
5 # Compile, build, and install cmake projects:
7 def __init__(self, sourceFolder, buildFolder, config):
8 self.sourceFolder = os.path.abspath(sourceFolder)
9 self.buildFolder = os.path.abspath(buildFolder)
10 self.installDir = config['installDir']
11 self.buildType = config['buildType']
12 self.jobs = config['jobs']
13 self.buildCmdPrefix = config['buildCmdPrefix']
14 self.installCmdPrefix = config['installCmdPrefix']
16 def configure(self, force=False):
17 if not os.path.exists(self.buildFolder): os.makedirs(self.buildFolder)
18 os.chdir(self.buildFolder)
19 # check if we actually need to work
20 cacheFile = 'CMakeCache.txt'
21 if os.path.exists(cacheFile) and os.path.exists('Makefile') and not force: return
22 # yes we do! make sure we start clean, and then go ahead
23 if os.path.exists(cacheFile): os.remove(cacheFile)
24 os.putenv('PKG_CONFIG_PATH', os.path.join(self.installDir, 'lib', 'pkgconfig')) # I found no way to do this within cmake
25 subprocess.check_call(['cmake', self.sourceFolder, '-DCMAKE_BUILD_TYPE='+self.buildType, '-DCMAKE_INSTALL_PREFIX='+self.installDir])
26 os.unsetenv('PKG_CONFIG_PATH')
29 os.chdir(self.buildFolder)
30 subprocess.check_call(self.buildCmdPrefix + ['make', '-j'+str(self.jobs)])
33 os.chdir(self.buildFolder)
34 subprocess.check_call(self.installCmdPrefix + ['make', 'install'])
36 # if auto-debuild is available, provide a wrapper for it
40 def __init__(self, sourceFolder, module, vcs, config):
41 self.sourceFolder = os.path.abspath(sourceFolder)
42 self.autoDebuildConfig = {
43 'sourceName': module['name'],
44 'debDir': os.path.abspath(config['debDir']),
45 'buildSystem': module.get('build-system', 'cmake'),
48 self.configured = False # make sure configure is called before build/install
50 def configure(self, force=False): # force is ignored
51 self.autoDebuildConfig['version'] = self.vcs.version() # by now, data has been fetched, so this is possible
52 os.chdir(self.sourceFolder)
53 print self.sourceFolder,self.autoDebuildConfig
54 self.files = auto_debuild.createDebianFiles(self.autoDebuildConfig)
55 self.configured = True
58 if not self.configured: self.configure()
59 os.chdir(self.sourceFolder)
60 auto_debuild.buildDebianPackage(self.autoDebuildConfig)
63 if not self.configured: self.configure()
64 os.chdir(self.sourceFolder)
65 subprocess.check_call(['sudo', 'dpkg', '--install'] + self.files)
67 print "auto_debuild not found, disabling auto-debuild system"