blob: 335056909c5099453833c22e0b32d031703eef33 (
plain)
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
96
|
# Maintainer: AdriĆ Cabello <adro.cc79 at protonmail dot com>
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Started by https://github.com/qumaciel at https://github.com/PixarAnimationStudios/USD/issues/2000
# WARNING This USD build is not intended for building Blender.
_tbbmajorver=2019
_tbbpkgminorver=6
pkgname=usd
pkgver=23.05
pkgrel=1
pkgdesc='3D VFX pipeline interchange file format'
arch=(x86_64)
url='https://openusd.org'
_url='https://github.com/PixarAnimationStudios/USD'
license=('Apache')
depends=(boost-libs
glew
jemalloc
openexr
opensubdiv
pyside2
pyside6
python-opengl)
makedepends=(boost
cmake
cuda
doxygen
git
glew
glfw
inetutils
ninja
opencl-headers
python
python-docutils
python-jinja
python-pygments)
options=(!lto)
# git+$_url.git#branch=dev TEST
source=("git+$_url.git#tag=v$pkgver"
"https://github.com/oneapi-src/oneTBB/archive/refs/tags/${_tbbmajorver}_U${_tbbpkgminorver}.tar.gz"
)
sha512sums=('SKIP'
'6bcc014ec90cd62293811ac436eab03c7f7c7e3e03109efcab1c42cfed48d8bf83073d03ab381e5e63ee8c905f1792a7fdab272ec7e585df14102bad714ffc15')
prepare() {
############################
# TBB 2019.6 #
############################
# USD is built against tbb 2019 update 6 and it is broken with current 2021.6.0
mkdir -p "${srcdir}"/tbb2019
cd oneTBB-${_tbbmajorver}_U${_tbbpkgminorver}
make
install -Dm755 build/linux_*/*.so* -t "${srcdir}"/tbb2019/usr/lib
install -d "${srcdir}"/tbb2019/usr/include
cp -a include/tbb "${srcdir}"/tbb2019/usr/include
cmake \
-DINSTALL_DIR="${srcdir}"/tbb2019/usr/lib/cmake/TBB \
-DSYSTEM_NAME=Linux \
-DTBB_VERSION_FILE="${srcdir}"/tbb2019/usr/include/tbb/tbb_stddef.h \
-P cmake/tbb_config_installer.cmake
}
build() {
_CMAKE_FLAGS+=(
-DCMAKE_INSTALL_PREFIX:PATH=/usr/usd
-DPXR_BUILD_TESTS=ON
-DTBB_ROOT_DIR="${srcdir}"/tbb2019/usr
-DBoost_NO_BOOST_CMAKE=ON
-DPXR_USE_PYTHON_3=ON
-DBUILD_SHARED_LIBS=ON
-DPXR_MALLOC_LIBRARY:path=/usr/lib/libjemalloc.so
-DPXR_VALIDATE_GENERATED_CODE=OFF
)
export CXXFLAGS+=" -DBOOST_BIND_GLOBAL_PLACEHOLDERS"
cmake -S USD -B build -G Ninja "${_CMAKE_FLAGS[@]}"
LD_PRELOAD=/usr/lib/libjemalloc.so ninja -C build ${MAKEFLAGS:--j12}
}
package() {
DESTDIR="$pkgdir" ninja -C build install
mkdir -p $pkgdir/usr/bin
ln -s "/usr/usd/bin/usdview" "$pkgdir/usr/bin/usdview"
echo ""
echo "----------------------------------------------"
echo "To launch usdview use this env vars:"
echo "PATH /lib:/usr/usd/bin"
echo "PYTHONPATH /usr/usd/lib/python"
echo "LD_PRELOAD /usr/lib/libjemalloc.so (Optional)"
echo "----------------------------------------------"
}
|