Uh oh!
There was an error while loading. Please reload this page.
forked from ParallelSSH/ssh-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_setup_libssh.py
More file actions
Latest commit
55 lines (50 loc) · 2.03 KB
/
Copy path_setup_libssh.py
File metadata and controls
55 lines (50 loc) · 2.03 KB
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
# This file is part of ssh-python.
# Copyright (C) 2017-2022 Panos Kittenis and contributors.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, version 2.1.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
importos
fromglobimportglob
frommultiprocessingimportcpu_count
fromshutilimportcopy2
fromsubprocessimportcheck_call
fromsysimportstderr
defbuild_ssh():
ifbool(os.environ.get('SYSTEM_LIBSSH', False)):
stderr.write("Using system libssh..%s"% (os.sep))
return
ifos.path.exists('/usr/local/opt/openssl'):
os.environ['OPENSSL_ROOT_DIR'] ='/usr/local/opt/openssl'
ifos.path.exists('/opt/homebrew/opt/openssl'):
os.environ['OPENSSL_ROOT_DIR'] ='/opt/homebrew/opt/openssl'
ifnotos.path.exists('src'):
os.mkdir('src')
ifnotos.path.exists('local'):
os.mkdir('local')
ifnotos.path.exists('local/lib'):
os.mkdir('local/lib')
# Depending on architecture cmake installs libraries into lib64,
# but we don't care about that.
ifnotos.path.exists('local/lib64'):
os.symlink('lib', 'local/lib64')
os.chdir('src')
check_call("""cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../local \
-DWITH_GSSAPI=ON \
-DWITH_EXAMPLES=OFF \
-DUNIT_TESTING=OFF \
../libssh""",
shell=True, env=os.environ)
check_call(['make', '-j%s'% (cpu_count(),), 'all', 'install'])
os.chdir('..')
forsrcinglob('local/lib/libssh.so*'):
copy2(src, 'ssh/')