示例#1
0
 def _():
     install( name, version,
              server = server, 
              identifier = identifier,
              tarball_ext = 'tar.bz2',
              install_commands = cmds,
              **kwds )
     return
示例#2
0
 def _():
     install( name, version,
              server = server,
              install_commands = cmds,
              **kwds )
     import os
     os.environ['HDF5_DIR'] = install_path
     return
示例#3
0
 def _():
     install(name,
             version,
             server=server,
             identifier=identifier,
             tarball_ext='tar.bz2',
             install_commands=cmds,
             **kwds)
     return
示例#4
0
    def _():
        install(
            name, version,
            identifier = identifier,
            server = server,
            install_commands = cmds,
            **kwds )

        # libboost_python.so
        import glob, os
        files = glob.glob('%s/lib/libboost_python*.so.*' % install_path)
        file0 = files[0]
        os.symlink(file0, '%s/lib/libboost_python.so' % install_path)
        
        # notification
        import os
        os.environ['BOOSTPYTHON_DIR'] = install_path
        
        return
示例#5
0
    def _():
        install(name,
                version,
                identifier=identifier,
                server=server,
                install_commands=cmds,
                **kwds)

        # libboost_python.so
        import glob, os
        files = glob.glob('%s/lib/libboost_python*.so.*' % install_path)
        file0 = files[0]
        os.symlink(file0, '%s/lib/libboost_python.so' % install_path)

        # notification
        import os
        os.environ['BOOSTPYTHON_DIR'] = install_path

        return
示例#6
0
 def _():
     install(name, version, server=server, install_commands=cmds, **kwds)
     return
示例#7
0
 def _():
     return install(
         name, version,
         server = server,
         install_commands = [cmd],
         **kwds )
示例#8
0
 def _():
     install( name, version,
              server = server,
              install_commands = cmds,
              **kwds )
     return
示例#9
0
 def _():
     install(name, version, server=server, install_commands=cmds, **kwds)
     import os
     os.environ['GSL_DIR'] = install_path
     return