forked from iLCSoft/iLCInstall
-
Notifications
You must be signed in to change notification settings - Fork 1
/
marlinutil.py
29 lines (22 loc) · 945 Bytes
/
marlinutil.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
##################################################
#
# MarlinUtil module
#
# Author: Jan Engels, DESY
# Date: Jan, 2007
#
##################################################
# custom imports
from .marlinpkg import MarlinPKG
class MarlinUtil(MarlinPKG):
""" Responsible for the MarlinUtil installation process. """
def __init__(self, userInput):
MarlinPKG.__init__(self, "MarlinUtil", userInput )
self.hasCMakeFindSupport = True
# required modules
self.reqmodules = [ "Marlin", "GSL", "CLHEP", "GEAR", "LCIO" , "CED" , "DD4hep", "ROOT" ]
# cvs root
self.download.root = "marlinreco"
def postCheckDeps(self):
MarlinPKG.postCheckDeps(self)
self.envpath["LD_LIBRARY_PATH"].append( self.installPath+'/lib' )