forked from iLCSoft/iLCInstall
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathninja.py
64 lines (45 loc) · 1.64 KB
/
ninja.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
##################################################
#
# ninja module
#
# Author: M. Petric, CERN
# Date: mar, 2017
#
##################################################
# custom imports
from .baseilc import BaseILC
from .util import *
class ninja(BaseILC):
""" Responsible for the ninja installation process. """
def __init__(self, userInput):
BaseILC.__init__(self, userInput, "ninja","Ninja")
# no cmake build support
self.hasCMakeBuildSupport = False
self.download.supportHEAD = False
self.download.supportedTypes = ["wget"]
self.reqfiles = [[
"ninja",
]]
def setMode(self, mode):
BaseILC.setMode(self, mode)
self.download.url = "https://github.com/ninja-build/ninja/archive/v" + self.version + ".tar.gz"
def downloadSources(self):
BaseILC.downloadSources(self)
# move sources to a subdirectory
os.renames( self.version, self.name )
os.renames( self.name, self.version + "/" + self.name )
def compile(self):
""" compile ninja """
if( self.rebuild ):
os_system( "./configure.py --bootstrap" )
if( os_system( "configure.py --bootstrap" ) ):
self.abort( "failed to bootstrap!!" )
def cleanupInstall(self):
BaseILC.cleanupInstall(self)
os.chdir( self.installPath )
os_system( r"find . \! -name 'ninja' -delete" )
def postCheckDeps(self):
BaseILC.postCheckDeps(self)
self.env["ninja_HOME"] = self.installPath
if self.installPath != "/usr":
self.envpath["PATH"].append( "$ninja_HOME" )