-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
executable file
·47 lines (38 loc) · 1.47 KB
/
setup.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
#!/usr/bin/env python3
"""Install Speculos"""
import pathlib
import tempfile
from distutils.spawn import find_executable
from setuptools.command.build_py import build_py as _build_py
from setuptools import setup
class BuildSpeculos(_build_py):
"""
Extend "setup.py build_py" to build Speculos launcher and VNC server using cmake.
This command requires some system dependencies (ARM compiler, libvncserver
headers...) which are documented on https://speculos.ledger.com/installation/build.html
distutils documentation about extending the build command:
https://docs.python.org/3.8/distutils/extending.html#integrating-new-commands
"""
def run(self):
if not find_executable("cmake"):
raise RuntimeError("cmake is not found and is required to build Speculos")
if not self.dry_run:
pathlib.Path(self.build_lib).mkdir(parents=True, exist_ok=True)
with tempfile.TemporaryDirectory(prefix="build-", dir=self.build_lib) as build_dir:
self.spawn(
[
"cmake",
"-H.",
"-B" + build_dir,
"-DCMAKE_BUILD_TYPE=Release",
"-DBUILD_TESTING=0",
"-DWITH_VNC=1",
]
)
self.spawn(["cmake", "--build", build_dir])
super().run()
setup(
cmdclass={
"build_py": BuildSpeculos,
},
)