Esempio n. 1
0
def make(args=''):
    """Autobuilder build"""
    if can_access_file("autogen.sh"):
        autotools.make(args)
    if can_access_file("Makefile"):
        autotools.make(args)
    if can_access_file("meson.build"):
        mesontools.make(args)
    if can_access_file("CmakeLists.txt"):
        cmaketools.make(args)
Esempio n. 2
0
def build():
    cmaketools.make()
Esempio n. 3
0
def build():
    shelltools.cd("build")
    cmaketools.make()
Esempio n. 4
0
def build():
    tools.make()
Esempio n. 5
0
def build():
    pythonmodules.compile()
    pythonmodules.compile(pyVer="3")
    cmaketools.make()
Esempio n. 6
0
def make(parameters=''):
    cmaketools.make(parameters)
Esempio n. 7
0
def build():
    shelltools.export("PYTHON", "/usr/bin/python3")
    shelltools.makedirs("inary-build")
    shelltools.cd("inary-build")

    cmaketools.make()
Esempio n. 8
0
def make(parameters=''):
    cmaketools.make('-C build {}'.format(parameters))
Esempio n. 9
0
def build():
    cmaketools.make("-j1")
Esempio n. 10
0
def build():
    cmaketools.make("-C build")
    cmaketools.make("-C build doc")
Esempio n. 11
0
def build():
    shelltools.cd("inary-build")

    cmaketools.make()
Esempio n. 12
0
def build():
    shelltools.cd("source")
    cmaketools.make()
Esempio n. 13
0
def build():
    shelltools.export(
        "PKG_CONFIG_PATH", "/usr/lib32/pkgconfig"
        if get.buildTYPE() == "emul32" else "/usr/lib/pkgconfig")

    cmaketools.make()