1import config.package 2 3class Configure(config.package.GNUPackage): 4 def __init__(self, framework): 5 config.package.Package.__init__(self, framework) 6 self.gitcommit = 'master' 7 self.download = ['git://https://github.com/CSCsw/ColPack.git'] 8 self.includes = ['ColPack/ColPackHeaders.h'] 9 self.liblist = [['libColPack.a']] 10 self.functionsCxx = [1,'void current_time();','current_time()'] 11 self.requirescxx11 = 1 12 self.cxx = 1 13 self.precisions = ['double'] 14 self.complex = 0 15 return 16 17 def setupDependencies(self, framework): 18 config.package.Package.setupDependencies(self, framework) 19 self.deps = [] 20 return 21 22 def formGNUConfigureArgs(self): 23 args = config.package.GNUPackage.formGNUConfigureArgs(self) 24# args.append('--disable-openmp') 25 return args 26