blob: c6be27d8899c77cfcc150479eac85f0371fdd664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
printf "$(tput setaf 4)You will also need to set environment variables for Houdini to find RenderMan. For example, for Houdini 19.0.589 Python 3 version, edit the following file:$(tput sgr0)\n\n"
printf "$(tput setaf 2)~/houdini19.0/houdini.env$(tput sgr0)\n\n"
printf "$(tput setaf 4)And set the environment as follows:$(tput sgr0)\n\n"
printf "$(tput setaf 2)RMANTREE=/opt/pixar/RenderManProServer-24.4$(tput sgr0)\n"
printf "$(tput setaf 2)RFHTREE=/opt/pixar/RenderManForHoudini-24.4-py3$(tput sgr0)\n"
printf "$(tput setaf 2)RMAN_PROCEDURALPATH=\$RFHTREE/19.0.589/openvdb:&$(tput sgr0)\n"
printf "$(tput setaf 2)HOUDINI_PATH=\$RFHTREE/19.0.589:&$(tput sgr0)\n"
}
post_upgrade() {
post_install $1
}
|