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):
41 self.autoDebuildConfig = {}
43 def configure(self, force=False): # force is ignored
44 self.files = auto_debuild.createDebianFiles(self.autoDebuildConfig)
47 auto_debuild.buildDebianPackage(self.autoDebuildConfig)
50 subprocess.check_call(['sudo', 'dpkg', '--install'] + self.files)