blob: b20c8a7084bd1528c6d508522c8885cb59494d62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
printf "$(tput setaf 4)Run the RenderMan Installer by executing the following binary as root:$(tput sgr0)\n\n"
printf "$(tput setaf 2)/opt/pixar/RenderMan-Installer-ncr-24.4/bin/RenderManInstaller$(tput sgr0)\n\n"
printf "$(tput setaf 4)The installer will download files to your ~/Downloads directory.$(tput sgr0)\n"
printf "$(tput setaf 4)You can then use the downloads to install the component packages$(tput sgr0)\n"
printf "$(tput setaf 4)such as renderman-pro-server or renderman-for-maya.$(tput sgr0)\n"
}
post_upgrade() {
post_install $1
}
post_remove() {
printf "$(tput setaf 4)Please remove any license files in /opt/pixar manually.$(tput sgr0)\n\n"
}
|