forked from GafferHQ/dependencies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
48 lines (31 loc) · 870 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
{
"downloads" : [
"https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v3.1.12.tar.gz"
],
"url" : "http://www.openexr.com",
"license" : "LICENSE.md",
"dependencies" : [ "Python", "Boost", "Imath" ],
"environment" : {
"PATH" : "{buildDir}/bin:$PATH",
"LD_LIBRARY_PATH" : "{buildDir}/lib",
},
"commands" : [
"cmake"
" -D CMAKE_INSTALL_PREFIX={buildDir}"
# OpenEXR's CMake setup uses GNUInstallDirs, which unhelpfully
# puts the libraries in `lib64`. Coax them back.
" -D CMAKE_INSTALL_LIBDIR={buildDir}/lib"
" -D CMAKE_PREFIX_PATH={buildDir}"
" ."
,
"make VERBOSE=1 -j {jobs}",
"make install",
],
"manifest" : [
"bin/exrheader",
"include/OpenEXR",
"lib/libIex*{sharedLibraryExtension}*",
"lib/libIlmThread*{sharedLibraryExtension}*",
"lib/libOpenEXR*{sharedLibraryExtension}*",
],
}