-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.py
50 lines (37 loc) · 1.06 KB
/
package.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
# Copyright 2023-2024 DreamWorks Animation LLC and Intel Corporation
# SPDX-License-Identifier: Apache-2.0
# -*- coding: utf-8 -*-
import sys
name = 'arras4_node'
@early()
def version():
"""
Increment the build in the version.
"""
_version = '4.7.1'
from rezbuild import earlybind
return earlybind.version(this, _version)
description = 'Arras package'
authors = ['Dreamworks Animation R&D - JoSE Team',
help = ('For assistance, '
"please contact the folio's owner at: [email protected]")
variants = [
['os-CentOS-7', 'refplat-vfx2021.0'],
['os-CentOS-7', 'refplat-vfx2022.0'],
['os-rocky-9', 'refplat-vfx2021.0'],
['os-rocky-9', 'refplat-vfx2022.0'],
['os-rocky-9', 'refplat-vfx2023.1'],
]
requires = [
'arras4_core-4.10'
]
private_build_requires = [
'cmake_modules-1.0',
'gcc-9.3.x|11.x'
]
def commands():
prependenv('PATH', '{root}/bin:{root}/sbin')
prependenv('LD_LIBRARY_PATH', '{root}/lib')
uuid = '2798ce16-36b2-46a7-80ac-7d90994706d'
config_version = 0