-
Notifications
You must be signed in to change notification settings - Fork 27
/
config.py
95 lines (55 loc) · 1.86 KB
/
config.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"downloads" : [ "https://www.python.org/ftp/python/3.10.13/Python-3.10.13.tgz" ],
"publicVariables" : {
"pythonVersion" : "3.10",
"pythonMajorVersion" : "3",
"pythonMinorVersion" : "10",
"pythonIncludeDir" : "{buildDir}/include/python{pythonVersion}",
"pythonLibDir" : "{buildDir}/lib",
},
"url" : "https://www.python.org",
"license" : "LICENSE",
"dependencies" : [ "LibFFI" ],
"environment" : {
"LDFLAGS" : "-L{buildDir}/lib",
"CPPFLAGS" : "-I{buildDir}/include",
"LD_LIBRARY_PATH" : "{buildDir}/lib",
},
"commands" : [
"./configure --prefix={buildDir} {libraryType} --with-ensurepip=install",
"make -j {jobs}",
"make install",
],
"manifest" : [
"bin/python",
"bin/python*[0-9]",
"include/python*",
"lib/libpython*{sharedLibraryExtension}*",
"lib/Python.framework*",
"lib/python{pythonVersion}",
],
"variables" : {
"libraryType" : "--enable-shared",
},
"symbolicLinks" : [
( "{buildDir}/bin/python", "python3" ),
],
"platform:macos" : {
"variables" : {
"libraryType" : "--enable-framework={buildDir}/lib",
},
"environment" : {
"MACOSX_DEPLOYMENT_TARGET" : "11.0",
},
"publicVariables" : {
"pythonIncludeDir" : "{buildDir}/lib/Python.framework/Headers",
"pythonLibDir" : "{buildDir}/lib/Python.framework/Versions/{pythonVersion}/lib",
},
"symbolicLinks" : [
( "{buildDir}/bin/python", "../lib/Python.framework/Versions/Current/bin/python{pythonMajorVersion}" ),
( "{buildDir}/bin/python{pythonMajorVersion}", "../lib/Python.framework/Versions/Current/bin/python{pythonMajorVersion}" ),
( "{buildDir}/bin/python{pythonVersion}", "../lib/Python.framework/Versions/Current/bin/python{pythonVersion}" ),
( "{buildDir}/lib/Python.framework/Versions/Current/lib/libpython{pythonMajorVersion}.dylib", "libpython{pythonMajorVersion}.{pythonMinorVersion}.dylib" ),
],
},
}