forked from GafferHQ/dependencies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
54 lines (28 loc) · 795 Bytes
/
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
{
"downloads" : [
"https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-5.15.12-src/pyside-setup-opensource-src-5.15.12.tar.xz"
],
"url" : "http://www.pyside.org",
"license" : "LICENSE.LGPLv3",
# PySide uses clang for parsing headers, hence the LLVM dependency.
"dependencies" : [ "Python", "Qt", "LLVM" ],
"environment" : {
"PATH" : "{buildDir}/bin:$PATH",
},
"commands" : [
"python setup.py --parallel {jobs} install",
],
"platform:linux" : {
"environment" : {
"LD_LIBRARY_PATH" : "{buildDir}/lib",
},
},
"platform:macos" : {
"environment" : {
"DYLD_FRAMEWORK_PATH" : "{buildDir}/lib",
},
"symbolicLinks" : [
( "{buildDir}/bin/pyside2-uic", "../lib/Python.framework/Versions/Current/bin/pyside2-uic" ),
]
},
}