4376 lines
114 KiB
Bash
Executable File
4376 lines
114 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
# A shell script installing/building all needed dependencies to build Blender, for some Linux distributions.
|
|
|
|
##### Args and Help Handling #####
|
|
|
|
# Parse command line!
|
|
ARGS=$( \
|
|
getopt \
|
|
-o s:i:t:h \
|
|
--long source:,install:,tmp:,info:,threads:,help,show-deps,no-sudo,no-build,no-confirm,use-cxx11,\
|
|
with-all,with-opencollada,\
|
|
ver-ocio:,ver-oiio:,ver-llvm:,ver-osl:,ver-osd:,ver-openvdb:,\
|
|
force-all,force-python,force-numpy,force-boost,\
|
|
force-ocio,force-openexr,force-oiio,force-llvm,force-osl,force-osd,force-openvdb,\
|
|
force-ffmpeg,force-opencollada,force-alembic,\
|
|
build-all,build-python,build-numpy,build-boost,\
|
|
build-ocio,build-openexr,build-oiio,build-llvm,build-osl,build-osd,build-openvdb,\
|
|
build-ffmpeg,build-opencollada,build-alembic,\
|
|
skip-python,skip-numpy,skip-boost,\
|
|
skip-ocio,skip-openexr,skip-oiio,skip-llvm,skip-osl,skip-osd,skip-openvdb,\
|
|
skip-ffmpeg,skip-opencollada,skip-alembic \
|
|
-- "$@" \
|
|
)
|
|
|
|
COMMANDLINE=$@
|
|
|
|
DISTRO=""
|
|
RPM=""
|
|
SRC="$HOME/src/blender-deps"
|
|
INST="/opt/lib"
|
|
TMP="/tmp"
|
|
CWD=$PWD
|
|
INFO_PATH=$CWD
|
|
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
# Do not install some optional, potentially conflicting libs by default...
|
|
WITH_ALL=false
|
|
|
|
# Do not yet enable opencollada, use --with-opencollada (or --with-all) option to try it.
|
|
WITH_OPENCOLLADA=false
|
|
|
|
THREADS=$(nproc)
|
|
|
|
COMMON_INFO="\"Source code of dependencies needed to be compiled will be downloaded and extracted into '\$SRC'.
|
|
Built libs of dependencies needed to be compiled will be installed into '\$INST'.
|
|
Please edit \\\$SRC and/or \\\$INST variables at the beginning of this script,
|
|
or use --source/--install options, if you want to use other paths!
|
|
|
|
Number of threads for building: \$THREADS (automatically detected, use --threads=<nbr> to override it).
|
|
Full install: \$WITH_ALL (use --with-all option to enable it).
|
|
Building OpenCOLLADA: \$WITH_OPENCOLLADA (use --with-opencollada option to enable it).
|
|
|
|
Example:
|
|
Full install without OpenCOLLADA: --with-all --skip-opencollada
|
|
|
|
Use --help to show all available options!\""
|
|
|
|
ARGUMENTS_INFO="\"COMMAND LINE ARGUMENTS:
|
|
-h, --help
|
|
Show this message and exit.
|
|
|
|
--show-deps
|
|
Show main dependencies of Blender (including officially supported versions) and exit.
|
|
|
|
-s <path>, --source=<path>
|
|
Use a specific path where to store downloaded libraries sources (defaults to '\$SRC').
|
|
|
|
-i <path>, --install=<path>
|
|
Use a specific path where to install built libraries (defaults to '\$INST').
|
|
|
|
--tmp=<path>
|
|
Use a specific temp path (defaults to '\$TMP').
|
|
|
|
--info=<path>
|
|
Use a specific info path (to store BUILD_NOTES.txt, defaults to '\$INFO_PATH').
|
|
|
|
-t n, --threads=n
|
|
Use a specific number of threads when building the libraries (auto-detected as '\$THREADS').
|
|
|
|
--no-sudo
|
|
Disable use of sudo (this script won't be able to do much though, will just print needed packages...).
|
|
|
|
--no-build
|
|
Do not build (compile) anything, dependencies not installable with the package manager will remain missing.
|
|
|
|
--no-confirm
|
|
Disable any interaction with user (suitable for automated run).
|
|
|
|
--use-cxx11
|
|
Build all libraries in cpp11 'mode' (will be mandatory soon in blender2.8 branch).
|
|
NOTE: If your compiler is gcc-6.0 or above, you probably *want* to enable this option (since it's default
|
|
standard starting from this version).
|
|
|
|
--with-all
|
|
By default, a number of optional and not-so-often needed libraries are not installed.
|
|
This option will try to install them, at the cost of potential conflicts (depending on
|
|
how your package system is set…).
|
|
Note this option also implies all other (more specific) --with-foo options below.
|
|
|
|
--with-opencollada
|
|
Build and install the OpenCOLLADA libraries.
|
|
|
|
--ver-ocio=<ver>
|
|
Force version of OCIO library.
|
|
|
|
--ver-oiio=<ver>
|
|
Force version of OIIO library.
|
|
|
|
--ver-llvm=<ver>
|
|
Force version of LLVM library.
|
|
|
|
--ver-osl=<ver>
|
|
Force version of OSL library.
|
|
|
|
--ver-osd=<ver>
|
|
Force version of OSD library.
|
|
|
|
--ver-openvdb=<ver>
|
|
Force version of OpenVDB library.
|
|
|
|
Note about the --ver-foo options:
|
|
It may not always work as expected (some libs are actually checked out from a git rev...), yet it might help
|
|
to fix some build issues (like LLVM mismatch with the version used by your graphic system).
|
|
|
|
--build-all
|
|
Force the build of all possible libraries.
|
|
|
|
--build-python
|
|
Force the build of Python.
|
|
|
|
--build-numpy
|
|
Force the build of NumPy.
|
|
|
|
--build-boost
|
|
Force the build of Boost.
|
|
|
|
--build-ocio
|
|
Force the build of OpenColorIO.
|
|
|
|
--build-openexr
|
|
Force the build of OpenEXR.
|
|
|
|
--build-oiio
|
|
Force the build of OpenImageIO.
|
|
|
|
--build-llvm
|
|
Force the build of LLVM.
|
|
|
|
--build-osl
|
|
Force the build of OpenShadingLanguage.
|
|
|
|
--build-osd
|
|
Force the build of OpenSubdiv.
|
|
|
|
--build-openvdb
|
|
Force the build of OpenVDB.
|
|
|
|
--build-alembic
|
|
Force the build of Alembic.
|
|
|
|
--build-opencollada
|
|
Force the build of OpenCOLLADA.
|
|
|
|
--build-ffmpeg
|
|
Force the build of FFMpeg.
|
|
|
|
Note about the --build-foo options:
|
|
* They force the script to prefer building dependencies rather than using available packages.
|
|
This may make things simpler and allow working around some distribution bugs, but on the other hand it will
|
|
use much more space on your hard drive.
|
|
* Please be careful with the Blender building options if you have both 'official' dev packages and
|
|
install_deps' built ones on your system, by default CMake will prefer official packages, which may lead to
|
|
linking issues. Please ensure your CMake configuration always uses all correct library paths.
|
|
* If the “force-built” library is a dependency of others, it will force the build
|
|
of those libraries as well (e.g. --build-boost also implies --build-oiio and --build-osl...).
|
|
|
|
--force-all
|
|
Force the rebuild of all built libraries.
|
|
|
|
--force-python
|
|
Force the rebuild of Python.
|
|
|
|
--force-numpy
|
|
Force the rebuild of NumPy.
|
|
|
|
--force-boost
|
|
Force the rebuild of Boost.
|
|
|
|
--force-ocio
|
|
Force the rebuild of OpenColorIO.
|
|
|
|
--force-openexr
|
|
Force the rebuild of OpenEXR.
|
|
|
|
--force-oiio
|
|
Force the rebuild of OpenImageIO.
|
|
|
|
--force-llvm
|
|
Force the rebuild of LLVM.
|
|
|
|
--force-osl
|
|
Force the rebuild of OpenShadingLanguage.
|
|
|
|
--force-osd
|
|
Force the rebuild of OpenSubdiv.
|
|
|
|
--force-openvdb
|
|
Force the rebuild of OpenVDB.
|
|
|
|
--force-alembic
|
|
Force the rebuild of Alembic.
|
|
|
|
--force-opencollada
|
|
Force the rebuild of OpenCOLLADA.
|
|
|
|
--force-ffmpeg
|
|
Force the rebuild of FFMpeg.
|
|
|
|
Note about the --force-foo options:
|
|
* They obviously only have an effect if those libraries are built by this script
|
|
(i.e. if there is no available and satisfactory package)!
|
|
* If the “force-rebuilt” library is a dependency of others, it will force the rebuild
|
|
of those libraries too (e.g. --force-boost will also rebuild oiio and osl...).
|
|
|
|
--skip-python
|
|
Unconditionally skip Python installation/building.
|
|
|
|
--skip-numpy
|
|
Unconditionally skip NumPy installation/building.
|
|
|
|
--skip-boost
|
|
Unconditionally skip Boost installation/building.
|
|
|
|
--skip-ocio
|
|
Unconditionally skip OpenColorIO installation/building.
|
|
|
|
--skip-openexr
|
|
Unconditionally skip OpenEXR installation/building.
|
|
|
|
--skip-oiio
|
|
Unconditionally skip OpenImageIO installation/building.
|
|
|
|
--skip-llvm
|
|
Unconditionally skip LLVM installation/building.
|
|
|
|
--skip-osl
|
|
Unconditionally skip OpenShadingLanguage installation/building.
|
|
|
|
--skip-osd
|
|
Unconditionally skip OpenSubdiv installation/building.
|
|
|
|
--skip-openvdb
|
|
Unconditionally skip OpenVDB installation/building.
|
|
|
|
--skip-alembic
|
|
Unconditionally skip Alembic installation/building.
|
|
|
|
--skip-opencollada
|
|
Unconditionally skip OpenCOLLADA installation/building.
|
|
|
|
--skip-ffmpeg
|
|
Unconditionally skip FFMpeg installation/building.\""
|
|
|
|
##### Main Vars #####
|
|
|
|
DO_SHOW_DEPS=false
|
|
|
|
SUDO="sudo"
|
|
|
|
NO_BUILD=false
|
|
NO_CONFIRM=false
|
|
USE_CXX11=false
|
|
|
|
PYTHON_VERSION="3.5.2"
|
|
PYTHON_VERSION_MIN="3.5"
|
|
PYTHON_FORCE_BUILD=false
|
|
PYTHON_FORCE_REBUILD=false
|
|
PYTHON_SKIP=false
|
|
|
|
NUMPY_VERSION="1.10.1"
|
|
NUMPY_VERSION_MIN="1.8"
|
|
NUMPY_FORCE_BUILD=false
|
|
NUMPY_FORCE_REBUILD=false
|
|
NUMPY_SKIP=false
|
|
|
|
BOOST_VERSION="1.60.0"
|
|
BOOST_VERSION_MIN="1.49"
|
|
BOOST_FORCE_BUILD=false
|
|
BOOST_FORCE_REBUILD=false
|
|
BOOST_SKIP=false
|
|
|
|
OCIO_VERSION="1.0.9"
|
|
OCIO_VERSION_MIN="1.0"
|
|
OCIO_FORCE_BUILD=false
|
|
OCIO_FORCE_REBUILD=false
|
|
OCIO_SKIP=false
|
|
|
|
OPENEXR_VERSION="2.2.0"
|
|
OPENEXR_VERSION_MIN="2.0.1"
|
|
ILMBASE_VERSION="2.2.0"
|
|
ILMBASE_VERSION_MIN="2.2"
|
|
OPENEXR_FORCE_BUILD=false
|
|
OPENEXR_FORCE_REBUILD=false
|
|
OPENEXR_SKIP=false
|
|
_with_built_openexr=false
|
|
|
|
OIIO_VERSION="1.7.13"
|
|
OIIO_VERSION_MIN="1.7.13"
|
|
OIIO_VERSION_MAX="1.9.0" # UNKNOWN currently # Not supported by current OSL...
|
|
OIIO_FORCE_BUILD=false
|
|
OIIO_FORCE_REBUILD=false
|
|
OIIO_SKIP=false
|
|
|
|
LLVM_VERSION="3.4"
|
|
LLVM_VERSION_MIN="3.4"
|
|
LLVM_VERSION_FOUND=""
|
|
LLVM_FORCE_BUILD=false
|
|
LLVM_FORCE_REBUILD=false
|
|
LLVM_SKIP=false
|
|
|
|
# OSL needs to be compiled for now!
|
|
OSL_VERSION="1.7.5"
|
|
OSL_VERSION_MIN=$OSL_VERSION
|
|
OSL_FORCE_BUILD=false
|
|
OSL_FORCE_REBUILD=false
|
|
OSL_SKIP=false
|
|
|
|
# OpenSubdiv needs to be compiled for now
|
|
OSD_VERSION="3.1.1"
|
|
OSD_VERSION_MIN=$OSD_VERSION
|
|
OSD_FORCE_BUILD=false
|
|
OSD_FORCE_REBUILD=false
|
|
OSD_SKIP=false
|
|
|
|
# OpenVDB needs to be compiled for now
|
|
OPENVDB_BLOSC_VERSION="1.7.0"
|
|
|
|
OPENVDB_VERSION="3.1.0"
|
|
OPENVDB_VERSION_MIN=$OPENVDB_VERSION
|
|
OPENVDB_FORCE_BUILD=false
|
|
OPENVDB_FORCE_REBUILD=false
|
|
OPENVDB_SKIP=false
|
|
|
|
# Alembic needs to be compiled for now
|
|
ALEMBIC_VERSION="1.7.1"
|
|
ALEMBIC_VERSION_MIN=$ALEMBIC_VERSION
|
|
ALEMBIC_FORCE_BUILD=false
|
|
ALEMBIC_FORCE_REBUILD=false
|
|
ALEMBIC_SKIP=false
|
|
|
|
# Version??
|
|
OPENCOLLADA_VERSION="1.3"
|
|
OPENCOLLADA_FORCE_BUILD=false
|
|
OPENCOLLADA_FORCE_REBUILD=false
|
|
OPENCOLLADA_SKIP=false
|
|
|
|
FFMPEG_VERSION="3.2.1"
|
|
FFMPEG_VERSION_MIN="2.8.4"
|
|
FFMPEG_FORCE_BUILD=false
|
|
FFMPEG_FORCE_REBUILD=false
|
|
FFMPEG_SKIP=false
|
|
_ffmpeg_list_sep=";"
|
|
|
|
# FFMPEG optional libs.
|
|
VORBIS_USE=false
|
|
VORBIS_DEV=""
|
|
OGG_USE=false
|
|
OGG_DEV=""
|
|
THEORA_USE=false
|
|
THEORA_DEV=""
|
|
XVID_USE=false
|
|
XVID_DEV=""
|
|
X264_USE=false
|
|
X264_DEV=""
|
|
X264_VERSION_MIN=0.118
|
|
VPX_USE=false
|
|
VPX_VERSION_MIN=0.9.7
|
|
VPX_DEV=""
|
|
MP3LAME_USE=false
|
|
MP3LAME_DEV=""
|
|
OPENJPEG_USE=false
|
|
OPENJPEG_DEV=""
|
|
|
|
# Whether to use system GLEW or not (OpenSubDiv needs recent glew to work).
|
|
NO_SYSTEM_GLEW=false
|
|
|
|
# Switch to english language, else some things (like check_package_DEB()) won't work!
|
|
LANG_BACK=$LANG
|
|
LANG=""
|
|
export LANG
|
|
|
|
##### Generic Helpers #####
|
|
|
|
BLACK=$(tput setaf 0)
|
|
RED=$(tput setaf 1)
|
|
GREEN=$(tput setaf 2)
|
|
YELLOW=$(tput setaf 3)
|
|
LIME_YELLOW=$(tput setaf 190)
|
|
POWDER_BLUE=$(tput setaf 153)
|
|
BLUE=$(tput setaf 4)
|
|
MAGENTA=$(tput setaf 5)
|
|
CYAN=$(tput setaf 6)
|
|
WHITE=$(tput setaf 7)
|
|
BRIGHT=$(tput bold)
|
|
NORMAL=$(tput sgr0)
|
|
BLINK=$(tput blink)
|
|
REVERSE=$(tput smso)
|
|
UNDERLINE=$(tput smul)
|
|
|
|
_echo() {
|
|
if [ "X$1" = "X-n" ]; then
|
|
shift; printf "%s" "$@"
|
|
else
|
|
printf "%s\n" "$@"
|
|
fi
|
|
}
|
|
|
|
ERROR() {
|
|
_echo "${BRIGHT}${RED}ERROR! ${NORMAL}${RED}$@${NORMAL}"
|
|
}
|
|
|
|
WARNING() {
|
|
_echo "${BRIGHT}${YELLOW}WARNING! ${NORMAL}${YELLOW}$@${NORMAL}"
|
|
}
|
|
|
|
INFO() {
|
|
_echo "${GREEN}$@${NORMAL}"
|
|
}
|
|
|
|
PRINT() {
|
|
_echo "$@"
|
|
}
|
|
|
|
##### Args Handling #####
|
|
|
|
# Finish parsing the commandline args.
|
|
eval set -- "$ARGS"
|
|
while true; do
|
|
case $1 in
|
|
-s|--source)
|
|
SRC="$2"; shift; shift; continue
|
|
;;
|
|
-i|--install)
|
|
INST="$2"; shift; shift; continue
|
|
;;
|
|
--tmp)
|
|
TMP="$2"; shift; shift; continue
|
|
;;
|
|
--info)
|
|
INFO_PATH="$2"; shift; shift; continue
|
|
;;
|
|
-t|--threads)
|
|
THREADS="$2"; shift; shift; continue
|
|
;;
|
|
-h|--help)
|
|
PRINT ""
|
|
PRINT "USAGE:"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$COMMON_INFO"`"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$ARGUMENTS_INFO"`"
|
|
PRINT ""
|
|
exit 0
|
|
;;
|
|
--show-deps)
|
|
# We have to defer...
|
|
DO_SHOW_DEPS=true; shift; continue
|
|
;;
|
|
--no-sudo)
|
|
PRINT ""
|
|
WARNING "--no-sudo enabled, this script might not be able to do much..."
|
|
PRINT ""
|
|
SUDO=""; shift; continue
|
|
;;
|
|
--no-build)
|
|
PRINT ""
|
|
WARNING "--no-build enabled, this script will not be able to install all dependencies..."
|
|
PRINT ""
|
|
NO_BUILD=true; shift; continue
|
|
;;
|
|
--no-confirm)
|
|
NO_CONFIRM=true; shift; continue
|
|
;;
|
|
--use-cxx11)
|
|
USE_CXX11=true; shift; continue
|
|
;;
|
|
--with-all)
|
|
WITH_ALL=true; shift; continue
|
|
;;
|
|
--with-opencollada)
|
|
WITH_OPENCOLLADA=true; shift; continue
|
|
;;
|
|
--ver-ocio)
|
|
OCIO_VERSION="$2"
|
|
OCIO_VERSION_MIN=$OCIO_VERSION
|
|
shift; shift; continue
|
|
;;
|
|
--ver-oiio)
|
|
OIIO_VERSION="$2"
|
|
OIIO_VERSION_MIN=$OIIO_VERSION
|
|
shift; shift; continue
|
|
;;
|
|
--ver-llvm)
|
|
LLVM_VERSION="$2"
|
|
LLVM_VERSION_MIN=$LLVM_VERSION
|
|
shift; shift; continue
|
|
;;
|
|
--ver-osl)
|
|
OSL_VERSION="$2"
|
|
OSL_VERSION_MIN=$OSL_VERSION
|
|
shift; shift; continue
|
|
;;
|
|
--ver-osd)
|
|
OSD_VERSION="$2"
|
|
OSD_VERSION_MIN=$OSD_VERSION
|
|
shift; shift; continue
|
|
;;
|
|
--ver-openvdb)
|
|
OPENVDB_VERSION="$2"
|
|
OPENVDB_VERSION_MIN=$OPENVDB_VERSION
|
|
shift; shift; continue
|
|
;;
|
|
--build-all)
|
|
PYTHON_FORCE_BUILD=true
|
|
NUMPY_FORCE_BUILD=true
|
|
BOOST_FORCE_BUILD=true
|
|
OCIO_FORCE_BUILD=true
|
|
OPENEXR_FORCE_BUILD=true
|
|
OIIO_FORCE_BUILD=true
|
|
LLVM_FORCE_BUILD=true
|
|
OSL_FORCE_BUILD=true
|
|
OSD_FORCE_BUILD=true
|
|
OPENVDB_FORCE_BUILD=true
|
|
OPENCOLLADA_FORCE_BUILD=true
|
|
FFMPEG_FORCE_BUILD=true
|
|
ALEMBIC_FORCE_BUILD=true
|
|
shift; continue
|
|
;;
|
|
--build-python)
|
|
PYTHON_FORCE_BUILD=true
|
|
NUMPY_FORCE_BUILD=true
|
|
shift; continue
|
|
;;
|
|
--build-numpy)
|
|
PYTHON_FORCE_BUILD=true
|
|
NUMPY_FORCE_BUILD=true
|
|
shift; continue
|
|
;;
|
|
--build-boost)
|
|
BOOST_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-ocio)
|
|
OCIO_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-openexr)
|
|
OPENEXR_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-oiio)
|
|
OIIO_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-llvm)
|
|
LLVM_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-osl)
|
|
OSL_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-osd)
|
|
OSD_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-openvdb)
|
|
OPENVDB_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-opencollada)
|
|
OPENCOLLADA_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-ffmpeg)
|
|
FFMPEG_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--build-alembic)
|
|
ALEMBIC_FORCE_BUILD=true; shift; continue
|
|
;;
|
|
--force-all)
|
|
PYTHON_FORCE_REBUILD=true
|
|
NUMPY_FORCE_REBUILD=true
|
|
BOOST_FORCE_REBUILD=true
|
|
OCIO_FORCE_REBUILD=true
|
|
OPENEXR_FORCE_REBUILD=true
|
|
OIIO_FORCE_REBUILD=true
|
|
LLVM_FORCE_REBUILD=true
|
|
OSL_FORCE_REBUILD=true
|
|
OSD_FORCE_REBUILD=true
|
|
OPENVDB_FORCE_REBUILD=true
|
|
OPENCOLLADA_FORCE_REBUILD=true
|
|
FFMPEG_FORCE_REBUILD=true
|
|
ALEMBIC_FORCE_REBUILD=true
|
|
shift; continue
|
|
;;
|
|
--force-python)
|
|
PYTHON_FORCE_REBUILD=true
|
|
NUMPY_FORCE_REBUILD=true
|
|
shift; continue
|
|
;;
|
|
--force-numpy)
|
|
NUMPY_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-boost)
|
|
BOOST_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-ocio)
|
|
OCIO_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-openexr)
|
|
OPENEXR_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-oiio)
|
|
OIIO_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-llvm)
|
|
LLVM_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-osl)
|
|
OSL_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-osd)
|
|
OSD_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-openvdb)
|
|
OPENVDB_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-opencollada)
|
|
OPENCOLLADA_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-ffmpeg)
|
|
FFMPEG_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--force-alembic)
|
|
ALEMBIC_FORCE_REBUILD=true; shift; continue
|
|
;;
|
|
--skip-python)
|
|
PYTHON_SKIP=true; shift; continue
|
|
;;
|
|
--skip-numpy)
|
|
NUMPY_SKIP=true; shift; continue
|
|
;;
|
|
--skip-boost)
|
|
BOOST_SKIP=true; shift; continue
|
|
;;
|
|
--skip-ocio)
|
|
OCIO_SKIP=true; shift; continue
|
|
;;
|
|
--skip-openexr)
|
|
OPENEXR_SKIP=true; shift; continue
|
|
;;
|
|
--skip-oiio)
|
|
OIIO_SKIP=true; shift; continue
|
|
;;
|
|
--skip-llvm)
|
|
LLVM_SKIP=true; shift; continue
|
|
;;
|
|
--skip-osl)
|
|
OSL_SKIP=true; shift; continue
|
|
;;
|
|
--skip-osd)
|
|
OSD_SKIP=true; shift; continue
|
|
;;
|
|
--skip-openvdb)
|
|
OPENVDB_SKIP=true; shift; continue
|
|
;;
|
|
--skip-opencollada)
|
|
OPENCOLLADA_SKIP=true; shift; continue
|
|
;;
|
|
--skip-ffmpeg)
|
|
FFMPEG_SKIP=true; shift; continue
|
|
;;
|
|
--skip-alembic)
|
|
ALEMBIC_SKIP=true; shift; continue
|
|
;;
|
|
--)
|
|
# no more arguments to parse
|
|
break
|
|
;;
|
|
*)
|
|
PRINT ""
|
|
ERROR "Wrong parameter! Usage:"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$COMMON_INFO"`"
|
|
PRINT ""
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ "$WITH_ALL" = true -a "$OPENCOLLADA_SKIP" = false ]; then
|
|
WITH_OPENCOLLADA=true
|
|
fi
|
|
|
|
|
|
WARNING "****WARNING****"
|
|
PRINT "If you are experiencing issues building Blender, _*TRY A FRESH, CLEAN BUILD FIRST*_!"
|
|
PRINT "The same goes for install_deps itself, if you encounter issues, please first erase everything in $SRC and $INST"
|
|
PRINT "(provided obviously you did not add anything yourself in those dirs!), and run install_deps.sh again!"
|
|
PRINT "Often, changes in the libs built by this script, or in your distro package, cannot be handled simply, so..."
|
|
PRINT ""
|
|
PRINT "You may also try to use the '--build-foo' options to bypass your distribution's packages"
|
|
PRINT "for some troublesome/buggy libraries..."
|
|
PRINT ""
|
|
PRINT ""
|
|
PRINT "Ran with:"
|
|
PRINT " install_deps.sh $COMMANDLINE"
|
|
PRINT ""
|
|
PRINT ""
|
|
|
|
|
|
# This has to be done here, because user might force some versions...
|
|
PYTHON_SOURCE=( "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tgz" )
|
|
NUMPY_SOURCE=( "http://sourceforge.net/projects/numpy/files/NumPy/$NUMPY_VERSION/numpy-$NUMPY_VERSION.tar.gz" )
|
|
|
|
_boost_version_nodots=`echo "$BOOST_VERSION" | sed -r 's/\./_/g'`
|
|
BOOST_SOURCE=( "http://sourceforge.net/projects/boost/files/boost/$BOOST_VERSION/boost_$_boost_version_nodots.tar.bz2/download" )
|
|
BOOST_BUILD_MODULES="--with-system --with-filesystem --with-thread --with-regex --with-locale --with-date_time --with-wave --with-iostreams --with-python --with-program_options"
|
|
|
|
OCIO_SOURCE=( "https://github.com/imageworks/OpenColorIO/tarball/v$OCIO_VERSION" )
|
|
|
|
OPENEXR_USE_REPO=false
|
|
OPENEXR_SOURCE=( "http://download.savannah.nongnu.org/releases/openexr/openexr-$OPENEXR_VERSION.tar.gz" )
|
|
OPENEXR_SOURCE_REPO=( "https://github.com/mont29/openexr.git" )
|
|
OPENEXR_SOURCE_REPO_UID="2787aa1cf652d244ed45ae124eb1553f6cff11ee"
|
|
ILMBASE_SOURCE=( "http://download.savannah.nongnu.org/releases/openexr/ilmbase-$ILMBASE_VERSION.tar.gz" )
|
|
|
|
OIIO_USE_REPO=false
|
|
OIIO_SOURCE=( "https://github.com/OpenImageIO/oiio/archive/Release-$OIIO_VERSION.tar.gz" )
|
|
OIIO_SOURCE_REPO=( "https://github.com/OpenImageIO/oiio.git" )
|
|
OIIO_SOURCE_REPO_UID="c9e67275a0b248ead96152f6d2221cc0c0f278a4"
|
|
|
|
LLVM_SOURCE=( "http://llvm.org/releases/$LLVM_VERSION/llvm-$LLVM_VERSION.src.tar.gz" )
|
|
LLVM_CLANG_SOURCE=( "http://llvm.org/releases/$LLVM_VERSION/clang-$LLVM_VERSION.src.tar.gz" "http://llvm.org/releases/$LLVM_VERSION/cfe-$LLVM_VERSION.src.tar.gz" )
|
|
|
|
OSL_USE_REPO=false
|
|
OSL_SOURCE=( "https://github.com/imageworks/OpenShadingLanguage/archive/Release-$OSL_VERSION.tar.gz" )
|
|
#~ OSL_SOURCE=( "https://github.com/Nazg-Gul/OpenShadingLanguage/archive/Release-1.5.11.tar.gz" )
|
|
#~ OSL_SOURCE_REPO=( "https://github.com/imageworks/OpenShadingLanguage.git" )
|
|
#~ OSL_SOURCE_REPO=( "https://github.com/mont29/OpenShadingLanguage.git" )
|
|
#~ OSL_SOURCE_REPO_UID="85179714e1bc69cd25ecb6bb711c1a156685d395"
|
|
#~ OSL_SOURCE_REPO_BRANCH="master"
|
|
OSL_SOURCE_REPO=( "https://github.com/Nazg-Gul/OpenShadingLanguage.git" )
|
|
OSL_SOURCE_REPO_UID="7d40ff5fe8e47b030042afb92d0e955f5aa96f48"
|
|
OSL_SOURCE_REPO_BRANCH="blender-fixes"
|
|
|
|
OSD_USE_REPO=false
|
|
# Script foo to make the version string compliant with the archive name:
|
|
# ${Varname//SearchForThisChar/ReplaceWithThisChar}
|
|
OSD_SOURCE=( "https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${OSD_VERSION//./_}.tar.gz" )
|
|
OSD_SOURCE_REPO=( "https://github.com/PixarAnimationStudios/OpenSubdiv.git" )
|
|
OSD_SOURCE_REPO_UID="404659fffa659da075d1c9416e4fc939139a84ee"
|
|
OSD_SOURCE_REPO_BRANCH="dev"
|
|
|
|
OPENVDB_USE_REPO=false
|
|
OPENVDB_BLOSC_SOURCE=( "https://github.com/Blosc/c-blosc/archive/v${OPENVDB_BLOSC_VERSION}.tar.gz" )
|
|
OPENVDB_SOURCE=( "https://github.com/dreamworksanimation/openvdb/archive/v${OPENVDB_VERSION}.tar.gz" )
|
|
#~ OPENVDB_SOURCE_REPO=( "https:///dreamworksanimation/openvdb.git" )
|
|
#~ OPENVDB_SOURCE_REPO_UID="404659fffa659da075d1c9416e4fc939139a84ee"
|
|
#~ OPENVDB_SOURCE_REPO_BRANCH="dev"
|
|
|
|
ALEMBIC_USE_REPO=false
|
|
ALEMBIC_SOURCE=( "https://github.com/alembic/alembic/archive/${ALEMBIC_VERSION}.tar.gz" )
|
|
# ALEMBIC_SOURCE_REPO=( "https://github.com/alembic/alembic.git" )
|
|
# ALEMBIC_SOURCE_REPO_UID="e6c90d4faa32c4550adeaaf3f556dad4b73a92bb"
|
|
# ALEMBIC_SOURCE_REPO_BRANCH="master"
|
|
|
|
OPENCOLLADA_SOURCE=( "https://github.com/KhronosGroup/OpenCOLLADA.git" )
|
|
OPENCOLLADA_REPO_UID="3335ac164e68b2512a40914b14c74db260e6ff7d"
|
|
OPENCOLLADA_REPO_BRANCH="master"
|
|
|
|
FFMPEG_SOURCE=( "http://ffmpeg.org/releases/ffmpeg-$FFMPEG_VERSION.tar.bz2" )
|
|
|
|
CXXFLAGS_BACK=$CXXFLAGS
|
|
if [ "$USE_CXX11" = true ]; then
|
|
WARNING "You are trying to use c++11, this *should* go smoothely with any very recent distribution
|
|
However, if you are experiencing linking errors (also when building Blender itself), please try the following:
|
|
* Re-run this script with '--build-all --force-all' options.
|
|
* Ensure your gcc version is at the very least 4.8, if possible you should really rather use gcc-5.1 or above.
|
|
|
|
Please note that until the transition to C++11-built libraries if completed in your distribution, situation will
|
|
remain fuzzy and incompatibilities may happen..."
|
|
PRINT ""
|
|
PRINT ""
|
|
CXXFLAGS="$CXXFLAGS -std=c++11"
|
|
export CXXFLAGS
|
|
fi
|
|
|
|
#### Show Dependencies ####
|
|
|
|
# Need those to be after we defined versions...
|
|
DEPS_COMMON_INFO="\"COMMON DEPENDENCIES:
|
|
|
|
Those libraries should be available as packages in all recent distributions (optional ones are [between brackets]):
|
|
|
|
* Basics of dev environment (cmake, gcc, svn , git, ...).
|
|
* libjpeg, libpng, libtiff, [libopenjpeg], [libopenal].
|
|
* libx11, libxcursor, libxi, libxrandr, libxinerama (and other libx... as needed).
|
|
* libsqlite3, libbz2, libssl, libfftw3, libxml2, libtinyxml, yasm, libyaml-cpp.
|
|
* libsdl1.2, libglew, [libglewmx].\""
|
|
|
|
DEPS_SPECIFIC_INFO="\"BUILDABLE DEPENDENCIES:
|
|
|
|
The following libraries will probably not all be available as packages in your distribution
|
|
(install_deps will by default try to install packages, and fall back to building missing ones).
|
|
You can force install_deps to build those with '--build-all' or relevant 'build-foo' options, see '--help' message.
|
|
You may also want to build them yourself (optional ones are [between brackets]):
|
|
|
|
* Python $PYTHON_VERSION_MIN (from $PYTHON_SOURCE).
|
|
* [NumPy $NUMPY_VERSION_MIN] (from $NUMPY_SOURCE).
|
|
* Boost $BOOST_VERSION_MIN (from $BOOST_SOURCE, modules: $BOOST_BUILD_MODULES).
|
|
* [FFMpeg $FFMPEG_VERSION_MIN (needs libvorbis, libogg, libtheora, libx264, libmp3lame, libxvidcore, libvpx, ...)] (from $FFMPEG_SOURCE).
|
|
* [OpenColorIO $OCIO_VERSION_MIN] (from $OCIO_SOURCE).
|
|
* ILMBase $ILMBASE_VERSION_MIN (from $ILMBASE_SOURCE).
|
|
* OpenEXR $OPENEXR_VERSION_MIN (from $OPENEXR_SOURCE).
|
|
* OpenImageIO $OIIO_VERSION_MIN (from $OIIO_SOURCE).
|
|
* [LLVM $LLVM_VERSION_MIN (with clang)] (from $LLVM_SOURCE, and $LLVM_CLANG_SOURCE).
|
|
* [OpenShadingLanguage $OSL_VERSION_MIN] (from $OSL_SOURCE_REPO, branch $OSL_SOURCE_REPO_BRANCH, commit $OSL_SOURCE_REPO_UID).
|
|
* [OpenSubDiv $OSD_VERSION_MIN] (from $OSD_SOURCE_REPO, branch $OSD_SOURCE_REPO_BRANCH, commit $OSD_SOURCE_REPO_UID).
|
|
* [OpenVDB $OPENVDB_VERSION_MIN] (from $OPENVDB_SOURCE), [Blosc $OPENVDB_BLOSC_VERSION] (from $OPENVDB_BLOSC_SOURCE).
|
|
* [OpenCollada] (from $OPENCOLLADA_SOURCE, branch $OPENCOLLADA_REPO_BRANCH, commit $OPENCOLLADA_REPO_UID).
|
|
* [Alembic $ALEMBIC_VERSION] (from $ALEMBIC_SOURCE).\""
|
|
|
|
if [ "$DO_SHOW_DEPS" = true ]; then
|
|
PRINT ""
|
|
PRINT "Blender dependencies (libraries needed to build it):"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$DEPS_COMMON_INFO"`"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$DEPS_SPECIFIC_INFO"`"
|
|
PRINT ""
|
|
exit 0
|
|
fi
|
|
|
|
|
|
|
|
##### Generic Helpers #####
|
|
|
|
# Check return code of wget for success...
|
|
download() {
|
|
declare -a sources=("${!1}")
|
|
sources_count=${#sources[@]}
|
|
error=1
|
|
|
|
for (( i=0; $i < $sources_count; i++ ))
|
|
do
|
|
wget -c ${sources[$i]} -O $2
|
|
if [ $? -eq 0 ]; then
|
|
error=0
|
|
break
|
|
fi
|
|
done
|
|
|
|
if [ $error -eq 1 ]; then
|
|
ERROR "wget could not find ${sources[@]}, or could not write it to $2, exiting"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Return 0 if $1 = $2 (i.e. 1.01.0 = 1.1, but 1.1.1 != 1.1), else 1.
|
|
# $1 and $2 should be version numbers made of numbers only.
|
|
version_eq() {
|
|
backIFS=$IFS
|
|
IFS='.'
|
|
|
|
# Split both version numbers into their numeric elements.
|
|
arr1=( $1 )
|
|
arr2=( $2 )
|
|
|
|
ret=1
|
|
|
|
count1=${#arr1[@]}
|
|
count2=${#arr2[@]}
|
|
if [ $count2 -ge $count1 ]; then
|
|
_t=$count1
|
|
count1=$count2
|
|
count2=$_t
|
|
arr1=( $2 )
|
|
arr2=( $1 )
|
|
fi
|
|
|
|
ret=0
|
|
for (( i=0; $i < $count2; i++ ))
|
|
do
|
|
if [ $(( 10#${arr1[$i]} )) -ne $(( 10#${arr2[$i]} )) ]; then
|
|
ret=1
|
|
break
|
|
fi
|
|
done
|
|
|
|
for (( i=$count2; $i < $count1; i++ ))
|
|
do
|
|
if [ $(( 10#${arr1[$i]} )) -ne 0 ]; then
|
|
ret=1
|
|
break
|
|
fi
|
|
done
|
|
|
|
IFS=$backIFS
|
|
return $ret
|
|
}
|
|
|
|
# Return 0 if $1 >= $2, else 1.
|
|
# $1 and $2 should be version numbers made of numbers only.
|
|
version_ge() {
|
|
version_eq $1 $2
|
|
if [ $? -eq 1 -a $(_echo "$1" "$2" | sort --version-sort | head --lines=1) = "$1" ]; then
|
|
return 1
|
|
else
|
|
return 0
|
|
fi
|
|
}
|
|
|
|
# Return 0 if $3 > $1 >= $2, else 1.
|
|
# $1 and $2 should be version numbers made of numbers only.
|
|
version_ge_lt() {
|
|
version_ge $1 $3
|
|
if [ $? -eq 0 ]; then
|
|
return 1
|
|
else
|
|
version_ge $1 $2
|
|
return $?
|
|
fi
|
|
}
|
|
|
|
# Return 0 if $1 is into $2 (e.g. 3.3.2 is into 3.3, but not 3.3.0 or 3.3.5), else 1.
|
|
# $1 and $2 should be version numbers made of numbers only.
|
|
# $1 should be at least as long as $2!
|
|
version_match() {
|
|
backIFS=$IFS
|
|
IFS='.'
|
|
|
|
# Split both version numbers into their numeric elements.
|
|
arr1=( $1 )
|
|
arr2=( $2 )
|
|
|
|
ret=1
|
|
|
|
count1=${#arr1[@]}
|
|
count2=${#arr2[@]}
|
|
if [ $count1 -ge $count2 ]; then
|
|
ret=0
|
|
for (( i=0; $i < $count2; i++ ))
|
|
do
|
|
if [ $(( 10#${arr1[$i]} )) -ne $(( 10#${arr2[$i]} )) ]; then
|
|
ret=1
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
|
|
IFS=$backIFS
|
|
return $ret
|
|
}
|
|
|
|
##### Generic compile helpers #####
|
|
prepare_opt() {
|
|
INFO "Ensuring $INST exists and is writable by us"
|
|
if [ ! $SUDO ]; then
|
|
WARNING "--no-sudo enabled, might be impossible to create install dir..."
|
|
fi
|
|
if [ ! -d $INST ]; then
|
|
$SUDO mkdir -p $INST
|
|
fi
|
|
|
|
if [ ! -w $INST ]; then
|
|
$SUDO chown $USER $INST
|
|
$SUDO chmod 775 $INST
|
|
fi
|
|
}
|
|
|
|
# Check whether the current package needs to be recompiled, based on a dummy file containing a magic number in its name...
|
|
magic_compile_check() {
|
|
if [ -f $INST/.$1-magiccheck-$2-$USE_CXX11 ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
magic_compile_set() {
|
|
rm -f $INST/.$1-magiccheck-*
|
|
touch $INST/.$1-magiccheck-$2-$USE_CXX11
|
|
}
|
|
|
|
# Note: should clean nicely in $INST, but not in $SRC, when we switch to a new version of a lib...
|
|
_clean() {
|
|
rm -rf `readlink -f $_inst_shortcut`
|
|
# Only remove $_src dir when not using git repo (avoids to re-clone the whole repo every time!!!).
|
|
if [ $_git == false ]; then
|
|
rm -rf $_src
|
|
fi
|
|
rm -rf $_inst
|
|
rm -rf $_inst_shortcut
|
|
}
|
|
|
|
_create_inst_shortcut() {
|
|
rm -f $_inst_shortcut
|
|
ln -s $_inst $_inst_shortcut
|
|
}
|
|
|
|
# ldconfig
|
|
run_ldconfig() {
|
|
_lib_path="$INST/$1/lib"
|
|
_ldconf_path="/etc/ld.so.conf.d/$1.conf"
|
|
PRINT ""
|
|
if [ ! $SUDO ]; then
|
|
WARNING "--no-sudo enabled, impossible to run ldconfig for $1, you'll have to do it yourself..."
|
|
else
|
|
INFO "Running ldconfig for $1..."
|
|
$SUDO sh -c "echo \"$_lib_path\" > $_ldconf_path"
|
|
$SUDO /sbin/ldconfig # XXX OpenSuse does not include sbin in command path with sudo!!!
|
|
fi
|
|
PRINT ""
|
|
}
|
|
|
|
#### Build Python ####
|
|
_init_python() {
|
|
_src=$SRC/Python-$PYTHON_VERSION
|
|
_git=false
|
|
_inst=$INST/python-$PYTHON_VERSION
|
|
_inst_shortcut=$INST/python-$PYTHON_VERSION_MIN
|
|
}
|
|
|
|
clean_Python() {
|
|
clean_Numpy
|
|
_init_python
|
|
_clean
|
|
}
|
|
|
|
compile_Python() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, Python will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
py_magic=1
|
|
_init_python
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check python-$PYTHON_VERSION $py_magic
|
|
if [ $? -eq 1 -o "$PYTHON_FORCE_REBUILD" = true ]; then
|
|
clean_Python
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building Python-$PYTHON_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
mkdir -p $SRC
|
|
download PYTHON_SOURCE[@] $_src.tgz
|
|
|
|
INFO "Unpacking Python-$PYTHON_VERSION"
|
|
tar -C $SRC -xf $_src.tgz
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
./configure --prefix=$_inst --libdir=$_inst/lib --enable-ipv6 \
|
|
--enable-loadable-sqlite-extensions --with-dbmliborder=bdb \
|
|
--with-computed-gotos --with-pymalloc
|
|
|
|
make -j$THREADS && make install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "Python--$PYTHON_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set python-$PYTHON_VERSION $py_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling Python-$PYTHON_VERSION!"
|
|
else
|
|
INFO "Own Python-$PYTHON_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-python option."
|
|
fi
|
|
}
|
|
|
|
##### Build Numpy #####
|
|
_init_numpy() {
|
|
_src=$SRC/numpy-$NUMPY_VERSION
|
|
_git=false
|
|
_inst=$INST/numpy-$NUMPY_VERSION
|
|
_python=$INST/python-$PYTHON_VERSION
|
|
_site=lib/python$PYTHON_VERSION_MIN/site-packages
|
|
_inst_shortcut=$_python/$_site/numpy
|
|
}
|
|
|
|
clean_Numpy() {
|
|
_init_numpy
|
|
_clean
|
|
}
|
|
|
|
compile_Numpy() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, Numpy will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
numpy_magic=0
|
|
_init_numpy
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check numpy-$NUMPY_VERSION $numpy_magic
|
|
if [ $? -eq 1 -o "$NUMPY_FORCE_REBUILD" = true ]; then
|
|
clean_Numpy
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building Numpy-$NUMPY_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
mkdir -p $SRC
|
|
download NUMPY_SOURCE[@] $_src.tar.gz
|
|
|
|
INFO "Unpacking Numpy-$NUMPY_VERSION"
|
|
tar -C $SRC -xf $_src.tar.gz
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
$_python/bin/python3 setup.py install --prefix=$_inst
|
|
|
|
if [ -d $_inst ]; then
|
|
# Can't use _create_inst_shortcut here...
|
|
rm -f $_inst_shortcut
|
|
ln -s $_inst/$_site/numpy $_inst_shortcut
|
|
else
|
|
ERROR "Numpy-$NUMPY_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set numpy-$NUMPY_VERSION $numpy_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling Numpy-$NUMPY_VERSION!"
|
|
else
|
|
INFO "Own Numpy-$NUMPY_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-numpy option."
|
|
fi
|
|
}
|
|
|
|
#### Build Boost ####
|
|
_init_boost() {
|
|
_src=$SRC/boost-$BOOST_VERSION
|
|
_git=false
|
|
_inst=$INST/boost-$BOOST_VERSION
|
|
_inst_shortcut=$INST/boost
|
|
}
|
|
|
|
clean_Boost() {
|
|
_init_boost
|
|
_clean
|
|
}
|
|
|
|
compile_Boost() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, Boost will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
boost_magic=11
|
|
|
|
_init_boost
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check boost-$BOOST_VERSION $boost_magic
|
|
if [ $? -eq 1 -o "$BOOST_FORCE_REBUILD" = true ]; then
|
|
clean_Boost
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building Boost-$BOOST_VERSION"
|
|
|
|
# Rebuild dependecies as well!
|
|
OIIO_FORCE_BUILD=true
|
|
OIIO_FORCE_REBUILD=true
|
|
OSL_FORCE_BUILD=true
|
|
OSL_FORCE_REBUILD=true
|
|
OPENVDB_FORCE_BUILD=true
|
|
OPENVDB_FORCE_REBUILD=true
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
INFO "Downloading Boost-$BOOST_VERSION"
|
|
mkdir -p $SRC
|
|
download BOOST_SOURCE[@] $_src.tar.bz2
|
|
tar -C $SRC --transform "s,\w*,boost-$BOOST_VERSION,x" -xf $_src.tar.bz2
|
|
fi
|
|
|
|
cd $_src
|
|
if [ ! -f $_src/b2 ]; then
|
|
./bootstrap.sh
|
|
fi
|
|
./b2 -j$THREADS -a $BOOST_BUILD_MODULES \
|
|
--prefix=$_inst --disable-icu boost.locale.icu=off install
|
|
./b2 --clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "Boost-$BOOST_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set boost-$BOOST_VERSION $boost_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling Boost-$BOOST_VERSION!"
|
|
else
|
|
INFO "Own Boost-$BOOST_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-boost option."
|
|
fi
|
|
|
|
# Just always run it, much simpler this way!
|
|
run_ldconfig "boost"
|
|
}
|
|
|
|
#### Build OCIO ####
|
|
_init_ocio() {
|
|
_src=$SRC/OpenColorIO-$OCIO_VERSION
|
|
_git=false
|
|
_inst=$INST/ocio-$OCIO_VERSION
|
|
_inst_shortcut=$INST/ocio
|
|
}
|
|
|
|
clean_OCIO() {
|
|
_init_ocio
|
|
_clean
|
|
}
|
|
|
|
compile_OCIO() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, OpenColorIO will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
ocio_magic=1
|
|
_init_ocio
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check ocio-$OCIO_VERSION $ocio_magic
|
|
if [ $? -eq 1 -o "$OCIO_FORCE_REBUILD" = true ]; then
|
|
clean_OCIO
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building OpenColorIO-$OCIO_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
INFO "Downloading OpenColorIO-$OCIO_VERSION"
|
|
mkdir -p $SRC
|
|
download OCIO_SOURCE[@] $_src.tar.gz
|
|
|
|
INFO "Unpacking OpenColorIO-$OCIO_VERSION"
|
|
tar -C $SRC --transform "s,(.*/?)imageworks-OpenColorIO[^/]*(.*),\1OpenColorIO-$OCIO_VERSION\2,x" \
|
|
-xf $_src.tar.gz
|
|
fi
|
|
|
|
cd $_src
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_PREFIX_PATH=$_inst"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
cmake_d="$cmake_d -D OCIO_BUILD_APPS=OFF"
|
|
cmake_d="$cmake_d -D OCIO_BUILD_PYGLUE=OFF"
|
|
|
|
if file /bin/cp | grep -q '32-bit'; then
|
|
cflags="-fPIC -m32 -march=i686"
|
|
else
|
|
cflags="-fPIC"
|
|
fi
|
|
|
|
cmake $cmake_d -D CMAKE_CXX_FLAGS="$cflags" -D CMAKE_EXE_LINKER_FLAGS="-lgcc_s -lgcc" ..
|
|
|
|
make -j$THREADS && make install
|
|
|
|
# Force linking against static libs
|
|
rm -f $_inst/lib/*.so*
|
|
|
|
# Additional depencencies
|
|
cp ext/dist/lib/libtinyxml.a $_inst/lib
|
|
cp ext/dist/lib/libyaml-cpp.a $_inst/lib
|
|
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "OpenColorIO-$OCIO_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set ocio-$OCIO_VERSION $ocio_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling OpenColorIO-$OCIO_VERSION!"
|
|
else
|
|
INFO "Own OpenColorIO-$OCIO_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-ocio option."
|
|
fi
|
|
|
|
run_ldconfig "ocio"
|
|
}
|
|
|
|
#### Build ILMBase ####
|
|
_init_ilmbase() {
|
|
_src=$SRC/ILMBase-$ILMBASE_VERSION
|
|
_git=false
|
|
_inst=$TMP/ilmbase-$ILMBASE_VERSION
|
|
_inst_shortcut=$TMP/ilmbase
|
|
}
|
|
|
|
clean_ILMBASE() {
|
|
_init_ilmbase
|
|
_clean
|
|
}
|
|
|
|
compile_ILMBASE() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, ILMBase will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
ilmbase_magic=10
|
|
_init_ilmbase
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check ilmbase-$ILMBASE_VERSION $ilmbase_magic
|
|
if [ $? -eq 1 -o "$OPENEXR_FORCE_REBUILD" = true ]; then
|
|
clean_ILMBASE
|
|
rm -rf $_openexr_inst
|
|
fi
|
|
|
|
if [ ! -d $_openexr_inst ]; then
|
|
INFO "Building ILMBase-$ILMBASE_VERSION"
|
|
|
|
# Rebuild dependecies as well!
|
|
OPENEXR_FORCE_BUILD=true
|
|
OPENEXR_FORCE_REBUILD=true
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
INFO "Downloading ILMBase-$ILMBASE_VERSION"
|
|
mkdir -p $SRC
|
|
download ILMBASE_SOURCE[@] $_src.tar.gz
|
|
|
|
INFO "Unpacking ILMBase-$ILMBASE_VERSION"
|
|
tar -C $SRC --transform "s,(.*/?)ilmbase-[^/]*(.*),\1ILMBase-$ILMBASE_VERSION\2,x" -xf $_src.tar.gz
|
|
|
|
fi
|
|
|
|
cd $_src
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_PREFIX_PATH=$_inst"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
cmake_d="$cmake_d -D BUILD_SHARED_LIBS=ON"
|
|
cmake_d="$cmake_d -D NAMESPACE_VERSIONING=OFF" # VERY IMPORTANT!!!
|
|
|
|
if file /bin/cp | grep -q '32-bit'; then
|
|
cflags="-fPIC -m32 -march=i686"
|
|
else
|
|
cflags="-fPIC"
|
|
fi
|
|
|
|
cmake $cmake_d -D CMAKE_CXX_FLAGS="$cflags" -D CMAKE_EXE_LINKER_FLAGS="-lgcc_s -lgcc" ..
|
|
|
|
make -j$THREADS && make install
|
|
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "ILMBase-$ILMBASE_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
cd $CWD
|
|
INFO "Done compiling ILMBase-$ILMBASE_VERSION!"
|
|
else
|
|
INFO "Own ILMBase-$ILMBASE_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib (and openexr), use the --force-openexr option."
|
|
fi
|
|
|
|
magic_compile_set ilmbase-$ILMBASE_VERSION $ilmbase_magic
|
|
}
|
|
|
|
#### Build OpenEXR ####
|
|
_init_openexr() {
|
|
_src=$SRC/OpenEXR-$OPENEXR_VERSION
|
|
_git=true
|
|
_inst=$_openexr_inst
|
|
_inst_shortcut=$INST/openexr
|
|
}
|
|
|
|
clean_OPENEXR() {
|
|
clean_ILMBASE
|
|
_init_openexr
|
|
_clean
|
|
}
|
|
|
|
compile_OPENEXR() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, OpenEXR will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
openexr_magic=14
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check openexr-$OPENEXR_VERSION $openexr_magic
|
|
if [ $? -eq 1 -o "$OPENEXR_FORCE_REBUILD" = true ]; then
|
|
clean_OPENEXR
|
|
fi
|
|
|
|
_openexr_inst=$INST/openexr-$OPENEXR_VERSION
|
|
compile_ILMBASE
|
|
PRINT ""
|
|
_ilmbase_inst=$_inst_shortcut
|
|
_init_openexr
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building OpenEXR-$OPENEXR_VERSION"
|
|
|
|
# Rebuild dependecies as well!
|
|
OIIO_FORCE_BUILD=true
|
|
OIIO_FORCE_REBUILD=true
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
INFO "Downloading OpenEXR-$OPENEXR_VERSION"
|
|
mkdir -p $SRC
|
|
|
|
if [ "$OPENEXR_USE_REPO" = true ]; then
|
|
git clone ${OPENEXR_SOURCE_REPO[0]} $_src
|
|
else
|
|
download OPENEXR_SOURCE[@] $_src.tar.gz
|
|
INFO "Unpacking OpenEXR-$OPENEXR_VERSION"
|
|
tar -C $SRC --transform "s,(.*/?)openexr[^/]*(.*),\1OpenEXR-$OPENEXR_VERSION\2,x" -xf $_src.tar.gz
|
|
fi
|
|
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
if [ "$OPENEXR_USE_REPO" = true ]; then
|
|
# XXX For now, always update from latest repo...
|
|
git pull origin master
|
|
# Stick to same rev as windows' libs...
|
|
git checkout $OPENEXR_SOURCE_REPO_UID
|
|
git reset --hard
|
|
oiio_src_path="../OpenEXR"
|
|
else
|
|
oiio_src_path=".."
|
|
fi
|
|
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_PREFIX_PATH=$_inst"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
cmake_d="$cmake_d -D ILMBASE_PACKAGE_PREFIX=$_ilmbase_inst"
|
|
cmake_d="$cmake_d -D BUILD_SHARED_LIBS=ON"
|
|
cmake_d="$cmake_d -D NAMESPACE_VERSIONING=OFF" # VERY IMPORTANT!!!
|
|
|
|
if file /bin/cp | grep -q '32-bit'; then
|
|
cflags="-fPIC -m32 -march=i686"
|
|
else
|
|
cflags="-fPIC"
|
|
fi
|
|
|
|
cmake $cmake_d -D CMAKE_CXX_FLAGS="$cflags" -D CMAKE_EXE_LINKER_FLAGS="-lgcc_s -lgcc" $oiio_src_path
|
|
|
|
make -j$THREADS && make install
|
|
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
# Copy ilmbase files here (blender expects same dir for ilmbase and openexr :/).
|
|
cp -an $_ilmbase_inst/* $_inst_shortcut
|
|
else
|
|
ERROR "OpenEXR-$OPENEXR_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set openexr-$OPENEXR_VERSION $openexr_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling OpenEXR-$OPENEXR_VERSION!"
|
|
else
|
|
INFO "Own OpenEXR-$OPENEXR_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-openexr option."
|
|
fi
|
|
|
|
_with_built_openexr=true
|
|
|
|
# Just always run it, much simpler this way!
|
|
run_ldconfig "openexr"
|
|
}
|
|
|
|
#### Build OIIO ####
|
|
_init_oiio() {
|
|
_src=$SRC/OpenImageIO-$OIIO_VERSION
|
|
_git=true
|
|
_inst=$INST/oiio-$OIIO_VERSION
|
|
_inst_shortcut=$INST/oiio
|
|
}
|
|
|
|
clean_OIIO() {
|
|
_init_oiio
|
|
_clean
|
|
}
|
|
|
|
compile_OIIO() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, OpenImageIO will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
oiio_magic=16
|
|
_init_oiio
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check oiio-$OIIO_VERSION $oiio_magic
|
|
if [ $? -eq 1 -o "$OIIO_FORCE_REBUILD" = true ]; then
|
|
clean_OIIO
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building OpenImageIO-$OIIO_VERSION"
|
|
|
|
# Rebuild dependecies as well!
|
|
OSL_FORCE_BUILD=true
|
|
OSL_FORCE_REBUILD=true
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
mkdir -p $SRC
|
|
|
|
if [ "$OIIO_USE_REPO" = true ]; then
|
|
git clone ${OIIO_SOURCE_REPO[0]} $_src
|
|
else
|
|
download OIIO_SOURCE[@] "$_src.tar.gz"
|
|
INFO "Unpacking OpenImageIO-$OIIO_VERSION"
|
|
tar -C $SRC --transform "s,(.*/?)oiio-Release-[^/]*(.*),\1OpenImageIO-$OIIO_VERSION\2,x" -xf $_src.tar.gz
|
|
fi
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
if [ "$OIIO_USE_REPO" = true ]; then
|
|
# XXX For now, always update from latest repo...
|
|
git pull origin master
|
|
# Stick to same rev as windows' libs...
|
|
git checkout $OIIO_SOURCE_REPO_UID
|
|
git reset --hard
|
|
fi
|
|
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_PREFIX_PATH=$_inst"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
cmake_d="$cmake_d -D STOP_ON_WARNING=OFF"
|
|
cmake_d="$cmake_d -D BUILDSTATIC=OFF"
|
|
cmake_d="$cmake_d -D LINKSTATIC=OFF"
|
|
cmake_d="$cmake_d -D USE_SIMD=sse2"
|
|
|
|
cmake_d="$cmake_d -D ILMBASE_VERSION=$ILMBASE_VERSION"
|
|
cmake_d="$cmake_d -D OPENEXR_VERSION=$OPENEXR_VERSION"
|
|
|
|
if [ "$_with_built_openexr" = true ]; then
|
|
cmake_d="$cmake_d -D ILMBASE_HOME=$INST/openexr"
|
|
cmake_d="$cmake_d -D OPENEXR_HOME=$INST/openexr"
|
|
INFO "ILMBASE_HOME=$INST/openexr"
|
|
fi
|
|
|
|
# Optional tests and cmd tools
|
|
cmake_d="$cmake_d -D USE_QT=OFF"
|
|
cmake_d="$cmake_d -D USE_PYTHON=OFF"
|
|
cmake_d="$cmake_d -D USE_FFMPEG=OFF"
|
|
cmake_d="$cmake_d -D BUILD_TESTING=OFF"
|
|
cmake_d="$cmake_d -D OIIO_BUILD_TESTS=OFF"
|
|
cmake_d="$cmake_d -D OIIO_BUILD_TOOLS=OFF"
|
|
#cmake_d="$cmake_d -D CMAKE_EXPORT_COMPILE_COMMANDS=ON"
|
|
#cmake_d="$cmake_d -D CMAKE_VERBOSE_MAKEFILE=ON"
|
|
|
|
if [ -d $INST/boost ]; then
|
|
cmake_d="$cmake_d -D BOOST_ROOT=$INST/boost -D Boost_NO_SYSTEM_PATHS=ON"
|
|
fi
|
|
|
|
# Looks like we do not need ocio in oiio for now...
|
|
# if [ -d $INST/ocio ]; then
|
|
# cmake_d="$cmake_d -D OCIO_PATH=$INST/ocio"
|
|
# fi
|
|
cmake_d="$cmake_d -D USE_OCIO=OFF"
|
|
|
|
if [ "$USE_CXX11" = true ]; then
|
|
cmake_d="$cmake_d -D OIIO_BUILD_CPP11=ON"
|
|
fi
|
|
|
|
if file /bin/cp | grep -q '32-bit'; then
|
|
cflags="-fPIC -m32 -march=i686"
|
|
else
|
|
cflags="-fPIC"
|
|
fi
|
|
|
|
cmake $cmake_d -D CMAKE_CXX_FLAGS="$cflags" -D CMAKE_EXE_LINKER_FLAGS="-lgcc_s -lgcc" ..
|
|
|
|
make -j$THREADS && make install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "OpenImageIO-$OIIO_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set oiio-$OIIO_VERSION $oiio_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling OpenImageIO-$OIIO_VERSION!"
|
|
else
|
|
INFO "Own OpenImageIO-$OIIO_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-oiio option."
|
|
fi
|
|
|
|
# Just always run it, much simpler this way!
|
|
run_ldconfig "oiio"
|
|
}
|
|
|
|
#### Build LLVM ####
|
|
_init_llvm() {
|
|
_src=$SRC/LLVM-$LLVM_VERSION
|
|
_src_clang=$SRC/CLANG-$LLVM_VERSION
|
|
_git=false
|
|
_inst=$INST/llvm-$LLVM_VERSION
|
|
_inst_shortcut=$INST/llvm
|
|
}
|
|
|
|
clean_LLVM() {
|
|
_init_llvm
|
|
_clean
|
|
}
|
|
|
|
compile_LLVM() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, LLVM will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
llvm_magic=3
|
|
_init_llvm
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check llvm-$LLVM_VERSION $llvm_magic
|
|
if [ $? -eq 1 -o "$LLVM_FORCE_REBUILD" = true ]; then
|
|
clean_LLVM
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building LLVM-$LLVM_VERSION (CLANG included!)"
|
|
|
|
# Rebuild dependecies as well!
|
|
OSL_FORCE_BUILD=true
|
|
OSL_FORCE_REBUILD=true
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src -o true ]; then
|
|
mkdir -p $SRC
|
|
download LLVM_SOURCE[@] "$_src.tar.gz"
|
|
download LLVM_CLANG_SOURCE[@] "$_src_clang.tar.gz"
|
|
|
|
INFO "Unpacking LLVM-$LLVM_VERSION"
|
|
tar -C $SRC --transform "s,([^/]*/?)llvm-[^/]*(.*),\1LLVM-$LLVM_VERSION\2,x" \
|
|
-xf $_src.tar.gz
|
|
INFO "Unpacking CLANG-$LLVM_VERSION to $_src/tools/clang"
|
|
# Stupid clang guys renamed 'clang' to 'cfe' for now handle both cases... :(
|
|
tar -C $_src/tools \
|
|
--transform "s,([^/]*/?)(clang|cfe)-[^/]*(.*),\1clang\3,x" \
|
|
-xf $_src_clang.tar.gz
|
|
|
|
cd $_src
|
|
|
|
# XXX Ugly patching hack!
|
|
patch -p1 -i "$SCRIPT_DIR/install_deps_patches/llvm.patch"
|
|
|
|
cd $CWD
|
|
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
cmake_d="$cmake_d -D LLVM_ENABLE_FFI=ON"
|
|
cmake_d="$cmake_d -D LLVM_TARGETS_TO_BUILD=X86"
|
|
cmake_d="$cmake_d -D LLVM_ENABLE_TERMINFO=OFF"
|
|
|
|
if [ -d $_FFI_INCLUDE_DIR ]; then
|
|
cmake_d="$cmake_d -D FFI_INCLUDE_DIR=$_FFI_INCLUDE_DIR"
|
|
fi
|
|
|
|
cmake $cmake_d ..
|
|
|
|
make -j$THREADS && make install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "LLVM-$LLVM_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set llvm-$LLVM_VERSION $llvm_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling LLVM-$LLVM_VERSION (CLANG included)!"
|
|
else
|
|
INFO "Own LLVM-$LLVM_VERSION (CLANG included) is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-llvm option."
|
|
fi
|
|
}
|
|
|
|
#### Build OSL ####
|
|
_init_osl() {
|
|
_src=$SRC/OpenShadingLanguage-$OSL_VERSION
|
|
_git=true
|
|
_inst=$INST/osl-$OSL_VERSION
|
|
_inst_shortcut=$INST/osl
|
|
}
|
|
|
|
clean_OSL() {
|
|
_init_osl
|
|
_clean
|
|
}
|
|
|
|
compile_OSL() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, OpenShadingLanguage will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
osl_magic=21
|
|
_init_osl
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check osl-$OSL_VERSION $osl_magic
|
|
if [ $? -eq 1 -o "$OSL_FORCE_REBUILD" = true ]; then
|
|
#~ rm -Rf $_src # XXX Radical, but not easy to change remote repo fully automatically
|
|
clean_OSL
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building OpenShadingLanguage-$OSL_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
mkdir -p $SRC
|
|
|
|
if [ "$OSL_USE_REPO" = true ]; then
|
|
git clone ${OSL_SOURCE_REPO[0]} $_src
|
|
else
|
|
download OSL_SOURCE[@] "$_src.tar.gz"
|
|
INFO "Unpacking OpenShadingLanguage-$OSL_VERSION"
|
|
tar -C $SRC --transform "s,(.*/?)OpenShadingLanguage-[^/]*(.*),\1OpenShadingLanguage-$OSL_VERSION\2,x" \
|
|
-xf $_src.tar.gz
|
|
fi
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
if [ "$OSL_USE_REPO" = true ]; then
|
|
git remote set-url origin ${OSL_SOURCE_REPO[0]}
|
|
# XXX For now, always update from latest repo...
|
|
git pull --no-edit -X theirs origin $OSL_SOURCE_REPO_BRANCH
|
|
# Stick to same rev as windows' libs...
|
|
git checkout $OSL_SOURCE_REPO_UID
|
|
git reset --hard
|
|
|
|
# XXX Ugly patching hack!
|
|
patch -p1 -i "$SCRIPT_DIR/install_deps_patches/osl.patch"
|
|
fi
|
|
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
cmake_d="$cmake_d -D BUILD_TESTING=OFF"
|
|
cmake_d="$cmake_d -D STOP_ON_WARNING=OFF"
|
|
cmake_d="$cmake_d -D BUILDSTATIC=OFF"
|
|
cmake_d="$cmake_d -D OSL_BUILD_PLUGINS=OFF"
|
|
cmake_d="$cmake_d -D OSL_BUILD_TESTS=OFF"
|
|
cmake_d="$cmake_d -D USE_SIMD=sse2"
|
|
if [ "$USE_CXX11" = true ]; then
|
|
cmake_d="$cmake_d -D OSL_BUILD_CPP11=1"
|
|
fi
|
|
|
|
#~ cmake_d="$cmake_d -D ILMBASE_VERSION=$ILMBASE_VERSION"
|
|
|
|
if [ "$_with_built_openexr" = true ]; then
|
|
INFO "ILMBASE_HOME=$INST/openexr"
|
|
cmake_d="$cmake_d -D ILMBASE_HOME=$INST/openexr"
|
|
# XXX Temp workaround... sigh, ILMBase really messed the things up by defining their custom names ON by default :(
|
|
cmake_d="$cmake_d -D ILMBASE_CUSTOM=ON"
|
|
cmake_d="$cmake_d -D ILMBASE_CUSTOM_LIBRARIES='Half;Iex;Imath;IlmThread'"
|
|
fi
|
|
|
|
if [ -d $INST/boost ]; then
|
|
cmake_d="$cmake_d -D BOOST_ROOT=$INST/boost -D Boost_NO_SYSTEM_PATHS=ON"
|
|
fi
|
|
|
|
if [ -d $INST/oiio ]; then
|
|
cmake_d="$cmake_d -D OPENIMAGEIOHOME=$INST/oiio"
|
|
fi
|
|
|
|
if [ ! -z $LLVM_VERSION_FOUND ]; then
|
|
cmake_d="$cmake_d -D LLVM_VERSION=$LLVM_VERSION_FOUND"
|
|
if [ -d $INST/llvm ]; then
|
|
cmake_d="$cmake_d -D LLVM_DIRECTORY=$INST/llvm"
|
|
cmake_d="$cmake_d -D LLVM_STATIC=ON"
|
|
fi
|
|
fi
|
|
|
|
#~ cmake_d="$cmake_d -D CMAKE_EXPORT_COMPILE_COMMANDS=ON"
|
|
#~ cmake_d="$cmake_d -D CMAKE_VERBOSE_MAKEFILE=ON"
|
|
|
|
cmake $cmake_d ..
|
|
|
|
make -j$THREADS && make install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "OpenShadingLanguage-$OSL_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set osl-$OSL_VERSION $osl_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling OpenShadingLanguage-$OSL_VERSION!"
|
|
else
|
|
INFO "Own OpenShadingLanguage-$OSL_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-osl option."
|
|
fi
|
|
|
|
run_ldconfig "osl"
|
|
}
|
|
|
|
#### Build OSD ####
|
|
_init_osd() {
|
|
_src=$SRC/OpenSubdiv-$OSD_VERSION
|
|
_git=true
|
|
_inst=$INST/osd-$OSD_VERSION
|
|
_inst_shortcut=$INST/osd
|
|
}
|
|
|
|
clean_OSD() {
|
|
_init_osd
|
|
_clean
|
|
}
|
|
|
|
compile_OSD() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, OpenSubdiv will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
osd_magic=2
|
|
_init_osd
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check osd-$OSD_VERSION $osd_magic
|
|
if [ $? -eq 1 -o "$OSD_FORCE_REBUILD" = true ]; then
|
|
clean_OSD
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building OpenSubdiv-$OSD_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
mkdir -p $SRC
|
|
|
|
if [ "$OSD_USE_REPO" = true ]; then
|
|
git clone ${OSD_SOURCE_REPO[0]} $_src
|
|
else
|
|
download OSD_SOURCE[@] "$_src.tar.gz"
|
|
INFO "Unpacking OpenSubdiv-$OSD_VERSION"
|
|
tar -C $SRC --transform "s,(.*/?)OpenSubdiv-[^/]*(.*),\1OpenSubdiv-$OSD_VERSION\2,x" \
|
|
-xf $_src.tar.gz
|
|
fi
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
if [ "$OSD_USE_REPO" = true ]; then
|
|
git remote set-url origin ${OSD_SOURCE_REPO[0]}
|
|
# XXX For now, always update from latest repo...
|
|
git pull --no-edit -X theirs origin $OSD_SOURCE_REPO_BRANCH
|
|
# Stick to same rev as windows' libs...
|
|
git checkout $OSD_SOURCE_REPO_UID
|
|
git reset --hard
|
|
fi
|
|
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
# ptex is only needed when nicholas bishop is ready
|
|
cmake_d="$cmake_d -D NO_PTEX=1"
|
|
cmake_d="$cmake_d -D NO_CLEW=1 -D NO_CUDA=1 -D NO_OPENCL=1"
|
|
# maya plugin, docs, tutorials, regression tests and examples are not needed
|
|
cmake_d="$cmake_d -D NO_MAYA=1 -D NO_DOC=1 -D NO_TUTORIALS=1 -D NO_REGRESSION=1 -DNO_EXAMPLES=1"
|
|
|
|
cmake $cmake_d ..
|
|
|
|
make -j$THREADS && make install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "OpenSubdiv-$OSD_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set osd-$OSD_VERSION $osd_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling OpenSubdiv-$OSD_VERSION!"
|
|
else
|
|
INFO "Own OpenSubdiv-$OSD_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-osd option."
|
|
fi
|
|
|
|
run_ldconfig "osd"
|
|
}
|
|
|
|
#### Build Blosc ####
|
|
_init_blosc() {
|
|
_src=$SRC/c-blosc-$OPENVDB_BLOSC_VERSION
|
|
_git=false
|
|
_inst=$INST/blosc-$OPENVDB_BLOSC_VERSION
|
|
_inst_shortcut=$INST/blosc
|
|
}
|
|
|
|
clean_BLOSC() {
|
|
_init_blosc
|
|
_clean
|
|
}
|
|
|
|
compile_BLOSC() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, Blosc will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
blosc_magic=0
|
|
_init_blosc
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check blosc-$OPENVDB_BLOSC_VERSION $blosc_magic
|
|
if [ $? -eq 1 -o "$OPENVDB_FORCE_REBUILD" = true ]; then
|
|
clean_BLOSC
|
|
rm -rf $_inst
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building Blosc-$OPENVDB_BLOSC_VERSION"
|
|
|
|
# Rebuild dependecies as well!
|
|
OPENVDB_FORCE_BUILD=true
|
|
OPENVDB_FORCE_REBUILD=true
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
INFO "Downloading Blosc-$OPENVDB_BLOSC_VERSION"
|
|
mkdir -p $SRC
|
|
download OPENVDB_BLOSC_SOURCE[@] $_src.tar.gz
|
|
|
|
INFO "Unpacking Blosc-$OPENVDB_BLOSC_VERSION"
|
|
tar -C $SRC -xf $_src.tar.gz
|
|
fi
|
|
|
|
cd $_src
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
cmake_d="$cmake_d -D BUILD_STATIC=OFF"
|
|
cmake_d="$cmake_d -D BUILD_TESTS=OFF"
|
|
cmake_d="$cmake_d -D BUILD_BENCHMARKS=OFF"
|
|
INFO "$cmake_d"
|
|
|
|
cmake $cmake_d ..
|
|
|
|
make -j$THREADS && make install
|
|
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "Blosc-$OPENVDB_BLOSC_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
cd $CWD
|
|
INFO "Done compiling Blosc-$OPENVDB_BLOSC_VERSION!"
|
|
else
|
|
INFO "Own Blosc-$OPENVDB_BLOSC_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib (and openvdb), use the --force-openvdb option."
|
|
fi
|
|
|
|
magic_compile_set blosc-$OPENVDB_BLOSC_VERSION $blosc_magic
|
|
|
|
run_ldconfig "blosc"
|
|
}
|
|
|
|
#### Build OpenVDB ####
|
|
_init_openvdb() {
|
|
_src=$SRC/openvdb-$OPENVDB_VERSION
|
|
_git=false
|
|
_inst=$INST/openvdb-$OPENVDB_VERSION
|
|
_inst_shortcut=$INST/openvdb
|
|
}
|
|
|
|
clean_OPENVDB() {
|
|
_init_openvdb
|
|
_clean
|
|
}
|
|
|
|
compile_OPENVDB() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, OpenVDB will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
compile_BLOSC
|
|
PRINT ""
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
openvdb_magic=1
|
|
_init_openvdb
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check openvdb-$OPENVDB_VERSION $openvdb_magic
|
|
if [ $? -eq 1 -o "$OPENVDB_FORCE_REBUILD" = true ]; then
|
|
clean_OPENVDB
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building OpenVDB-$OPENVDB_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src -o true ]; then
|
|
mkdir -p $SRC
|
|
download OPENVDB_SOURCE[@] "$_src.tar.gz"
|
|
|
|
INFO "Unpacking OpenVDB-$OPENVDB_VERSION"
|
|
tar -C $SRC -xf $_src.tar.gz
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
#~ if [ "$OPENVDB_USE_REPO" = true ]; then
|
|
#~ git remote set-url origin ${OPENVDB_SOURCE_REPO[0]}
|
|
#~ # XXX For now, always update from latest repo...
|
|
#~ git pull --no-edit -X theirs origin $OPENVDB_SOURCE_REPO_BRANCH
|
|
#~ # Stick to same rev as windows' libs...
|
|
#~ git checkout $OPENVDB_SOURCE_REPO_UID
|
|
#~ git reset --hard
|
|
#~ fi
|
|
|
|
# Source builds here
|
|
cd openvdb
|
|
|
|
make_d="DESTDIR=$_inst"
|
|
make_d="$make_d HDSO=/usr"
|
|
|
|
if [ -d $INST/boost ]; then
|
|
make_d="$make_d BOOST_INCL_DIR=$INST/boost/include BOOST_LIB_DIR=$INST/boost/lib"
|
|
fi
|
|
|
|
if [ "$_with_built_openexr" = true ]; then
|
|
make_d="$make_d ILMBASE_INCL_DIR=$INST/openexr/include ILMBASE_LIB_DIR=$INST/openexr/lib"
|
|
make_d="$make_d EXR_INCL_DIR=$INST/openexr/include EXR_LIB_DIR=$INST/openexr/lib"
|
|
INFO "ILMBASE_HOME=$INST/openexr"
|
|
fi
|
|
|
|
if [ -d $INST/blosc ]; then
|
|
make_d="$make_d BLOSC_INCL_DIR=$INST/blosc/include BLOSC_LIB_DIR=$INST/blosc/lib"
|
|
fi
|
|
|
|
# Build without log4cplus, glfw, python module & docs
|
|
make_d="$make_d LOG4CPLUS_INCL_DIR= GLFW_INCL_DIR= PYTHON_VERSION= DOXYGEN="
|
|
|
|
make -j$THREADS lib $make_d install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "OpenVDB-$OPENVDB_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set openvdb-$OPENVDB_VERSION $openvdb_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling OpenVDB-$OPENVDB_VERSION!"
|
|
else
|
|
INFO "Own OpenVDB-$OPENVDB_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-openvdb option."
|
|
fi
|
|
|
|
run_ldconfig "openvdb"
|
|
}
|
|
|
|
#### Build Alembic ####
|
|
_init_alembic() {
|
|
_src=$SRC/alembic-$ALEMBIC_VERSION
|
|
_git=false
|
|
_inst=$INST/alembic-$ALEMBIC_VERSION
|
|
_inst_shortcut=$INST/alembic
|
|
}
|
|
|
|
clean_ALEMBIC() {
|
|
_init_alembic
|
|
_clean
|
|
}
|
|
|
|
compile_ALEMBIC() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, Alembic will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
alembic_magic=2
|
|
_init_alembic
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check alembic-$ALEMBIC_VERSION $alembic_magic
|
|
if [ $? -eq 1 -o "$ALEMBIC_FORCE_REBUILD" = true ]; then
|
|
clean_ALEMBIC
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building Alembic-$ALEMBIC_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src -o true ]; then
|
|
mkdir -p $SRC
|
|
download ALEMBIC_SOURCE[@] "$_src.tar.gz"
|
|
|
|
INFO "Unpacking Alembic-$ALEMBIC_VERSION"
|
|
tar -C $SRC -xf $_src.tar.gz
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
cmake_d="-D CMAKE_INSTALL_PREFIX=$_inst"
|
|
|
|
# Without Boost or TR1, Alembic requires C++11.
|
|
if [ "$USE_CXX11" != true ]; then
|
|
cmake_d="$cmake_d -D ALEMBIC_LIB_USES_BOOST=ON"
|
|
cmake_d="$cmake_d -D ALEMBIC_LIB_USES_TR1=OFF"
|
|
fi
|
|
|
|
if [ -d $INST/boost ]; then
|
|
if [ -d $INST/boost ]; then
|
|
cmake_d="$cmake_d -D BOOST_ROOT=$INST/boost"
|
|
fi
|
|
cmake_d="$cmake_d -D USE_STATIC_BOOST=ON"
|
|
else
|
|
cmake_d="$cmake_d -D USE_STATIC_BOOST=OFF"
|
|
fi
|
|
|
|
if [ "$_with_built_openexr" = true ]; then
|
|
cmake_d="$cmake_d -D ILMBASE_ROOT=$INST/openexr"
|
|
cmake_d="$cmake_d -D USE_ARNOLD=OFF"
|
|
cmake_d="$cmake_d -D USE_BINARIES=OFF"
|
|
cmake_d="$cmake_d -D USE_EXAMPLES=OFF"
|
|
cmake_d="$cmake_d -D USE_HDF5=OFF"
|
|
cmake_d="$cmake_d -D USE_MAYA=OFF"
|
|
cmake_d="$cmake_d -D USE_PRMAN=OFF"
|
|
cmake_d="$cmake_d -D USE_PYALEMBIC=OFF"
|
|
cmake_d="$cmake_d -D USE_STATIC_HDF5=OFF"
|
|
cmake_d="$cmake_d -D ALEMBIC_ILMBASE_LINK_STATIC=OFF"
|
|
cmake_d="$cmake_d -D ALEMBIC_SHARED_LIBS=OFF"
|
|
INFO "ILMBASE_ROOT=$INST/openexr"
|
|
fi
|
|
|
|
cmake $cmake_d ./
|
|
make -j$THREADS install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "Alembic-$ALEMBIC_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set alembic-$ALEMBIC_VERSION $alembic_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling Alembic-$ALEMBIC_VERSION!"
|
|
else
|
|
INFO "Own Alembic-$ALEMBIC_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-alembic option."
|
|
fi
|
|
|
|
run_ldconfig "alembic"
|
|
}
|
|
|
|
#### Build OpenCOLLADA ####
|
|
_init_opencollada() {
|
|
_src=$SRC/OpenCOLLADA-$OPENCOLLADA_VERSION
|
|
_git=true
|
|
_inst=$INST/opencollada-$OPENCOLLADA_VERSION
|
|
_inst_shortcut=$INST/opencollada
|
|
}
|
|
|
|
clean_OpenCOLLADA() {
|
|
_init_opencollada
|
|
_clean
|
|
}
|
|
|
|
compile_OpenCOLLADA() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, OpenCOLLADA will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled results!
|
|
opencollada_magic=9
|
|
_init_opencollada
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check opencollada-$OPENCOLLADA_VERSION $opencollada_magic
|
|
if [ $? -eq 1 -o "$OPENCOLLADA_FORCE_REBUILD" = true ]; then
|
|
clean_OpenCOLLADA
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building OpenCOLLADA-$OPENCOLLADA_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
mkdir -p $SRC
|
|
git clone $OPENCOLLADA_SOURCE $_src
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
# XXX For now, always update from latest repo...
|
|
git pull origin $OPENCOLLADA_REPO_BRANCH
|
|
|
|
# Stick to same rev as windows' libs...
|
|
git checkout $OPENCOLLADA_REPO_UID
|
|
git reset --hard
|
|
|
|
# Always refresh the whole build!
|
|
if [ -d build ]; then
|
|
rm -rf build
|
|
fi
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake_d="-D CMAKE_BUILD_TYPE=Release"
|
|
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
|
|
cmake_d="$cmake_d -D USE_EXPAT=OFF"
|
|
cmake_d="$cmake_d -D USE_LIBXML=ON"
|
|
# XXX Does not work!
|
|
# cmake_d="$cmake_d -D USE_STATIC=OFF"
|
|
cmake_d="$cmake_d -D USE_STATIC=ON"
|
|
|
|
cmake $cmake_d ../
|
|
|
|
make -j$THREADS && make install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "OpenCOLLADA-$OPENCOLLADA_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set opencollada-$OPENCOLLADA_VERSION $opencollada_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling OpenCOLLADA-$OPENCOLLADA_VERSION!"
|
|
else
|
|
INFO "Own OpenCOLLADA-$OPENCOLLADA_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-opencollada option."
|
|
fi
|
|
}
|
|
|
|
#### Build FFMPEG ####
|
|
_init_ffmpeg() {
|
|
_src=$SRC/ffmpeg-$FFMPEG_VERSION
|
|
_inst=$INST/ffmpeg-$FFMPEG_VERSION
|
|
_inst_shortcut=$INST/ffmpeg
|
|
}
|
|
|
|
clean_FFmpeg() {
|
|
_init_ffmpeg
|
|
_clean
|
|
}
|
|
|
|
compile_FFmpeg() {
|
|
if [ "$NO_BUILD" = true ]; then
|
|
WARNING "--no-build enabled, ffmpeg will not be compiled!"
|
|
return
|
|
fi
|
|
|
|
# To be changed each time we make edits that would modify the compiled result!
|
|
ffmpeg_magic=5
|
|
_init_ffmpeg
|
|
|
|
# Clean install if needed!
|
|
magic_compile_check ffmpeg-$FFMPEG_VERSION $ffmpeg_magic
|
|
if [ $? -eq 1 -o "$FFMPEG_FORCE_REBUILD" = true ]; then
|
|
clean_FFmpeg
|
|
fi
|
|
|
|
if [ ! -d $_inst ]; then
|
|
INFO "Building ffmpeg-$FFMPEG_VERSION"
|
|
|
|
prepare_opt
|
|
|
|
if [ ! -d $_src ]; then
|
|
INFO "Downloading ffmpeg-$FFMPEG_VERSION"
|
|
mkdir -p $SRC
|
|
download FFMPEG_SOURCE[@] "$_src.tar.bz2"
|
|
|
|
INFO "Unpacking ffmpeg-$FFMPEG_VERSION"
|
|
tar -C $SRC -xf $_src.tar.bz2
|
|
fi
|
|
|
|
cd $_src
|
|
|
|
extra=""
|
|
|
|
if [ "$VORBIS_USE" = true ]; then
|
|
extra="$extra --enable-libvorbis"
|
|
fi
|
|
|
|
if [ "$THEORA_USE" = true ]; then
|
|
extra="$extra --enable-libtheora"
|
|
fi
|
|
|
|
if [ "$XVID_USE" = true ]; then
|
|
extra="$extra --enable-libxvid"
|
|
fi
|
|
|
|
if [ "$X264_USE" = true ]; then
|
|
extra="$extra --enable-libx264"
|
|
fi
|
|
|
|
if [ "$VPX_USE" = true ]; then
|
|
extra="$extra --enable-libvpx"
|
|
fi
|
|
|
|
if [ "$MP3LAME_USE" = true ]; then
|
|
extra="$extra --enable-libmp3lame"
|
|
fi
|
|
|
|
if [ "$OPENJPEG_USE" = true ]; then
|
|
extra="$extra --enable-libopenjpeg"
|
|
fi
|
|
|
|
./configure --cc="gcc -Wl,--as-needed" \
|
|
--extra-ldflags="-pthread -static-libgcc" \
|
|
--prefix=$_inst --enable-static \
|
|
--disable-ffplay --disable-ffserver --disable-doc \
|
|
--enable-gray \
|
|
--enable-avfilter --disable-vdpau \
|
|
--disable-bzlib --disable-libgsm --disable-libspeex \
|
|
--enable-pthreads --enable-zlib --enable-stripping --enable-runtime-cpudetect \
|
|
--disable-vaapi --disable-nonfree --enable-gpl \
|
|
--disable-postproc --disable-librtmp --disable-libopencore-amrnb \
|
|
--disable-libopencore-amrwb --disable-libdc1394 --disable-version3 --disable-outdev=sdl \
|
|
--disable-libxcb \
|
|
--disable-outdev=xv --disable-indev=sndio --disable-outdev=sndio \
|
|
--disable-outdev=alsa --disable-indev=sdl --disable-indev=alsa --disable-indev=jack \
|
|
--disable-indev=lavfi $extra
|
|
|
|
make -j$THREADS && make install
|
|
make clean
|
|
|
|
if [ -d $_inst ]; then
|
|
_create_inst_shortcut
|
|
else
|
|
ERROR "FFmpeg-$FFMPEG_VERSION failed to compile, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
magic_compile_set ffmpeg-$FFMPEG_VERSION $ffmpeg_magic
|
|
|
|
cd $CWD
|
|
INFO "Done compiling ffmpeg-$FFMPEG_VERSION!"
|
|
else
|
|
INFO "Own ffmpeg-$FFMPEG_VERSION is up to date, nothing to do!"
|
|
INFO "If you want to force rebuild of this lib, use the --force-ffmpeg option."
|
|
fi
|
|
}
|
|
|
|
|
|
#### Install on DEB-like ####
|
|
get_package_version_DEB() {
|
|
dpkg-query -W -f '${Version}' $1 | sed -r 's/([0-9]+:)?(([0-9]+\.?)+([0-9]+)).*/\2/'
|
|
}
|
|
|
|
check_package_DEB() {
|
|
r=`apt-cache show $1 | grep -c 'Package:'`
|
|
|
|
if [ $r -ge 1 ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
check_package_installed_DEB() {
|
|
r=`dpkg-query -W -f='${Status}' $1 | grep -c "install ok"`
|
|
|
|
if [ $r -ge 1 ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
check_package_version_match_DEB() {
|
|
v=`apt-cache policy $1 | grep 'Candidate:' | sed -r 's/.*:\s*([0-9]+:)(([0-9]+\.?)+).*/\2/'`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_match $v $2
|
|
return $?
|
|
}
|
|
|
|
check_package_version_ge_DEB() {
|
|
v=`apt-cache policy $1 | grep 'Candidate:' | sed -r 's/.*:\s*([0-9]+:)?(([0-9]+\.?)+).*/\2/'`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_ge $v $2
|
|
return $?
|
|
}
|
|
|
|
check_package_version_ge_lt_DEB() {
|
|
v=`apt-cache policy $1 | grep 'Candidate:' | sed -r 's/.*:\s*([0-9]+:)?(([0-9]+\.?)+).*/\2/'`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_ge_lt $v $2 $3
|
|
return $?
|
|
}
|
|
|
|
install_packages_DEB() {
|
|
if [ ! $SUDO ]; then
|
|
WARNING "--no-sudo enabled, impossible to run apt-get install for $@, you'll have to do it yourself..."
|
|
else
|
|
$SUDO apt-get install -y $@
|
|
if [ $? -ge 1 ]; then
|
|
ERROR "apt-get failed to install requested packages, exiting."
|
|
exit 1
|
|
fi
|
|
fi
|
|
}
|
|
|
|
install_DEB() {
|
|
PRINT ""
|
|
INFO "Installing dependencies for DEB-based distribution"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$COMMON_INFO"`"
|
|
PRINT ""
|
|
|
|
if [ "$NO_CONFIRM" = false ]; then
|
|
read -p "Do you want to continue (Y/n)?"
|
|
[ "$(echo ${REPLY:=Y} | tr [:upper:] [:lower:])" != "y" ] && exit
|
|
fi
|
|
|
|
if [ ! $SUDO ]; then
|
|
WARNING "--no-sudo enabled, impossible to run apt-get update, you'll have to do it yourself..."
|
|
else
|
|
$SUDO apt-get update
|
|
fi
|
|
|
|
# These libs should always be available in debian/ubuntu official repository...
|
|
VORBIS_DEV="libvorbis-dev"
|
|
OGG_DEV="libogg-dev"
|
|
THEORA_DEV="libtheora-dev"
|
|
|
|
_packages="gawk cmake cmake-curses-gui build-essential libjpeg-dev libpng-dev libtiff-dev \
|
|
git libfreetype6-dev libx11-dev flex bison libtbb-dev libxxf86vm-dev \
|
|
libxcursor-dev libxi-dev wget libsqlite3-dev libxrandr-dev libxinerama-dev \
|
|
libbz2-dev libncurses5-dev libssl-dev liblzma-dev libreadline-dev \
|
|
libopenal-dev libglew-dev yasm $THEORA_DEV $VORBIS_DEV $OGG_DEV \
|
|
libsdl1.2-dev libfftw3-dev patch bzip2 libxml2-dev libtinyxml-dev libjemalloc-dev"
|
|
# libglewmx-dev (broken in deb testing currently...)
|
|
|
|
VORBIS_USE=true
|
|
OGG_USE=true
|
|
THEORA_USE=true
|
|
|
|
PRINT ""
|
|
# New Ubuntu crap (17.04 and more) have no openjpeg lib!
|
|
OPENJPEG_DEV="libopenjpeg-dev"
|
|
check_package_DEB $OPENJPEG_DEV
|
|
if [ $? -eq 0 ]; then
|
|
_packages="$_packages $OPENJPEG_DEV"
|
|
OPENJPEG_USE=true
|
|
fi
|
|
|
|
PRINT ""
|
|
# Some not-so-old distro (ubuntu 12.4) do not have it, do not fail in this case, just warn.
|
|
YAMLCPP_DEV="libyaml-cpp-dev"
|
|
check_package_DEB $YAMLCPP_DEV
|
|
if [ $? -eq 0 ]; then
|
|
_packages="$_packages $YAMLCPP_DEV"
|
|
else
|
|
PRINT ""
|
|
WARNING "libyaml-cpp-dev not found, you may have to install it by hand to get Blender compiling..."
|
|
PRINT ""
|
|
fi
|
|
|
|
if [ "$WITH_ALL" = true ]; then
|
|
_packages="$_packages libspnav-dev"
|
|
# Only install jack if jack2 is not already installed!
|
|
JACK="libjack-dev"
|
|
JACK2="libjack-jackd2-dev"
|
|
check_package_installed_DEB $JACK2
|
|
if [ $? -eq 0 ]; then
|
|
_packages="$_packages $JACK2"
|
|
else
|
|
_packages="$_packages $JACK"
|
|
fi
|
|
fi
|
|
|
|
PRINT ""
|
|
install_packages_DEB $_packages
|
|
|
|
PRINT""
|
|
SNDFILE_DEV="libsndfile1-dev"
|
|
check_package_DEB $SNDFILE_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB $SNDFILE_DEV
|
|
fi
|
|
|
|
PRINT ""
|
|
X264_DEV="libx264-dev"
|
|
check_package_version_ge_DEB $X264_DEV $X264_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB $X264_DEV
|
|
X264_USE=true
|
|
fi
|
|
|
|
if [ "$WITH_ALL" = true ]; then
|
|
PRINT ""
|
|
XVID_DEV="libxvidcore-dev"
|
|
check_package_DEB $XVID_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB $XVID_DEV
|
|
XVID_USE=true
|
|
fi
|
|
|
|
PRINT ""
|
|
MP3LAME_DEV="libmp3lame-dev"
|
|
check_package_DEB $MP3LAME_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB $MP3LAME_DEV
|
|
MP3LAME_USE=true
|
|
fi
|
|
|
|
PRINT ""
|
|
VPX_DEV="libvpx-dev"
|
|
check_package_version_ge_DEB $VPX_DEV $VPX_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB $VPX_DEV
|
|
VPX_USE=true
|
|
fi
|
|
fi
|
|
|
|
# Check cmake/glew versions and disable features for older distros.
|
|
# This is so Blender can at least compile.
|
|
PRINT ""
|
|
_cmake=`get_package_version_DEB cmake`
|
|
version_ge $_cmake "2.8.10"
|
|
if [ $? -eq 1 ]; then
|
|
version_ge $_cmake "2.8.8"
|
|
if [ $? -eq 1 ]; then
|
|
WARNING "OpenVDB and OpenCOLLADA disabled because cmake-$_cmake is not enough"
|
|
OPENVDB_SKIP=true
|
|
OPENCOLLADA_SKIP=true
|
|
else
|
|
WARNING "OpenVDB disabled because cmake-$_cmake is not enough"
|
|
OPENVDB_SKIP=true
|
|
fi
|
|
fi
|
|
|
|
PRINT ""
|
|
_glew=`get_package_version_DEB libglew-dev`
|
|
if [ -z $_glew ]; then
|
|
# Stupid virtual package in Ubuntu 12.04 doesn't show version number...
|
|
_glew=`apt-cache showpkg libglew-dev|tail -n1|awk '{print $2}'|sed 's/-.*//'`
|
|
fi
|
|
version_ge $_glew "1.9.0"
|
|
if [ $? -eq 1 ]; then
|
|
version_ge $_glew "1.7.0"
|
|
if [ $? -eq 1 ]; then
|
|
WARNING "OpenSubdiv disabled because GLEW-$_glew is not enough"
|
|
WARNING "Blender will not use system GLEW library"
|
|
OSD_SKIP=true
|
|
NO_SYSTEM_GLEW=true
|
|
else
|
|
WARNING "OpenSubdiv will compile with GLEW-$_glew but with limited capability"
|
|
WARNING "Blender will not use system GLEW library"
|
|
NO_SYSTEM_GLEW=true
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_python=false
|
|
if [ "$PYTHON_SKIP" = true ]; then
|
|
WARNING "Skipping Python/NumPy installation, as requested..."
|
|
elif [ "$PYTHON_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Python/NumPy building, as requested..."
|
|
_do_compile_python=true
|
|
else
|
|
check_package_DEB python$PYTHON_VERSION_MIN-dev
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB python$PYTHON_VERSION_MIN-dev
|
|
clean_Python
|
|
PRINT ""
|
|
if [ "$NUMPY_SKIP" = true ]; then
|
|
WARNING "Skipping NumPy installation, as requested..."
|
|
else
|
|
check_package_DEB python3-numpy
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB python3-numpy
|
|
else
|
|
WARNING "Sorry, using python package but no valid numpy package available!" \
|
|
" Use --build-numpy to force building of both Python and NumPy."
|
|
fi
|
|
fi
|
|
else
|
|
_do_compile_python=true
|
|
fi
|
|
fi
|
|
|
|
if $_do_compile_python; then
|
|
compile_Python
|
|
PRINT ""
|
|
if [ "$NUMPY_SKIP" = true ]; then
|
|
WARNING "Skipping NumPy installation, as requested..."
|
|
else
|
|
compile_Numpy
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$BOOST_SKIP" = true ]; then
|
|
WARNING "Skipping Boost installation, as requested..."
|
|
elif [ "$BOOST_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Boost building, as requested..."
|
|
compile_Boost
|
|
else
|
|
check_package_version_ge_DEB libboost-dev $BOOST_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB libboost-dev
|
|
|
|
boost_version=$(echo `get_package_version_DEB libboost-dev` | sed -r 's/^([0-9]+\.[0-9]+).*/\1/')
|
|
|
|
install_packages_DEB libboost-{filesystem,iostreams,locale,regex,system,thread,wave,program-options}$boost_version-dev
|
|
clean_Boost
|
|
else
|
|
compile_Boost
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OCIO_SKIP" = true ]; then
|
|
WARNING "Skipping OpenColorIO installation, as requested..."
|
|
elif [ "$OCIO_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenColorIO building, as requested..."
|
|
compile_OCIO
|
|
else
|
|
# XXX Always force build of own OCIO, until linux distro guys update their package to default libyaml-cpp ver (0.5)!
|
|
#check_package_version_ge_DEB libopencolorio-dev $OCIO_VERSION_MIN
|
|
#if [ $? -eq 0 ]; then
|
|
#install_packages_DEB libopencolorio-dev
|
|
#clean_OCIO
|
|
#else
|
|
compile_OCIO
|
|
#fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OPENEXR_SKIP" = true ]; then
|
|
WARNING "Skipping ILMBase/OpenEXR installation, as requested..."
|
|
elif [ "$OPENEXR_FORCE_BUILD" = true ]; then
|
|
INFO "Forced ILMBase/OpenEXR building, as requested..."
|
|
compile_OPENEXR
|
|
else
|
|
check_package_version_ge_DEB libopenexr-dev $OPENEXR_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB libopenexr-dev
|
|
OPENEXR_VERSION=`get_package_version_DEB libopenexr-dev`
|
|
ILMBASE_VERSION=$OPENEXR_VERSION
|
|
clean_OPENEXR
|
|
else
|
|
compile_OPENEXR
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OIIO_SKIP" = true ]; then
|
|
WARNING "Skipping OpenImageIO installation, as requested..."
|
|
elif [ "$OIIO_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenImageIO building, as requested..."
|
|
compile_OIIO
|
|
else
|
|
# XXX Debian Testing / Ubuntu 16.04 pulls in WAY too many deps (gtk2/opencv ?!) incl. OCIO build against libyaml-cpp0.3 so build for now...
|
|
#check_package_version_ge_lt_DEB libopenimageio-dev $OIIO_VERSION_MIN $OIIO_VERSION_MAX
|
|
#if [ $? -eq 0 -a "$_with_built_openexr" = false ]; then
|
|
# install_packages_DEB libopenimageio-dev
|
|
# clean_OIIO
|
|
#else
|
|
compile_OIIO
|
|
#fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
have_llvm=false
|
|
_do_compile_llvm=false
|
|
if [ "$LLVM_SKIP" = true ]; then
|
|
WARNING "Skipping LLVM installation, as requested (this also implies skipping OSL!)..."
|
|
OSL_SKIP=true
|
|
elif [ "$LLVM_FORCE_BUILD" = true ]; then
|
|
INFO "Forced LLVM building, as requested..."
|
|
_do_compile_llvm=true
|
|
else
|
|
check_package_DEB clang-$LLVM_VERSION
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB llvm-$LLVM_VERSION-dev clang-$LLVM_VERSION
|
|
have_llvm=true
|
|
LLVM_VERSION_FOUND=$LLVM_VERSION
|
|
clean_LLVM
|
|
else
|
|
_do_compile_llvm=true
|
|
fi
|
|
fi
|
|
|
|
if [ "$_do_compile_llvm" = true ]; then
|
|
install_packages_DEB libffi-dev
|
|
# LLVM can't find the debian ffi header dir
|
|
_FFI_INCLUDE_DIR=`dpkg -L libffi-dev | grep -e ".*/ffi.h" | sed -r 's/(.*)\/ffi.h/\1/'`
|
|
PRINT ""
|
|
compile_LLVM
|
|
have_llvm=true
|
|
LLVM_VERSION_FOUND=$LLVM_VERSION
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_osl=false
|
|
if [ "$OSL_SKIP" = true ]; then
|
|
WARNING "Skipping OpenShadingLanguage installation, as requested..."
|
|
elif [ "$OSL_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenShadingLanguage building, as requested..."
|
|
_do_compile_osl=true
|
|
else
|
|
# No package currently!
|
|
_do_compile_osl=true
|
|
fi
|
|
|
|
if [ "$_do_compile_osl" = true ]; then
|
|
if [ "$have_llvm" = true ]; then
|
|
PRINT ""
|
|
compile_OSL
|
|
else
|
|
WARNING "No LLVM available, cannot build OSL!"
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OSD_SKIP" = true ]; then
|
|
WARNING "Skipping OpenSubdiv installation, as requested..."
|
|
elif [ "$OSD_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenSubdiv building, as requested..."
|
|
compile_OSD
|
|
else
|
|
# No package currently!
|
|
PRINT ""
|
|
compile_OSD
|
|
fi
|
|
|
|
PRINT ""
|
|
if [ "$OPENVDB_SKIP" = true ]; then
|
|
WARNING "Skipping OpenVDB installation, as requested..."
|
|
elif [ "$OPENVDB_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenVDB building, as requested..."
|
|
compile_OPENVDB
|
|
else
|
|
check_package_version_ge_DEB libopenvdb-dev $OPENVDB_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB libopenvdb-dev libblosc-dev
|
|
clean_OPENVDB
|
|
else
|
|
compile_OPENVDB
|
|
fi
|
|
fi
|
|
|
|
PRINT ""
|
|
if [ "$ALEMBIC_SKIP" = true ]; then
|
|
WARNING "Skipping Alembic installation, as requested..."
|
|
elif [ "$ALEMBIC_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Alembic building, as requested..."
|
|
compile_ALEMBIC
|
|
else
|
|
# No package currently, only HDF5!
|
|
compile_ALEMBIC
|
|
fi
|
|
|
|
|
|
if [ "$WITH_OPENCOLLADA" = true ]; then
|
|
_do_compile_collada=false
|
|
PRINT ""
|
|
if [ "$OPENCOLLADA_SKIP" = true ]; then
|
|
WARNING "Skipping OpenCOLLADA installation, as requested..."
|
|
elif [ "$OPENCOLLADA_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenCollada building, as requested..."
|
|
_do_compile_collada=true
|
|
else
|
|
# No package currently!
|
|
_do_compile_collada=true
|
|
fi
|
|
|
|
if [ "$_do_compile_collada" = true ]; then
|
|
install_packages_DEB libpcre3-dev
|
|
# Find path to libxml shared lib...
|
|
_XML2_LIB=`dpkg -L libxml2-dev | grep -e ".*/libxml2.so"`
|
|
# No package
|
|
PRINT ""
|
|
compile_OpenCOLLADA
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$FFMPEG_SKIP" = true ]; then
|
|
WARNING "Skipping FFMpeg installation, as requested..."
|
|
elif [ "$FFMPEG_FORCE_BUILD" = true ]; then
|
|
INFO "Forced FFMpeg building, as requested..."
|
|
compile_FFmpeg
|
|
else
|
|
# XXX Debian Testing / Ubuntu 16.04 finally includes FFmpeg, so check as usual
|
|
check_package_DEB ffmpeg
|
|
if [ $? -eq 0 ]; then
|
|
check_package_version_ge_DEB ffmpeg $FFMPEG_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_DEB libavdevice-dev
|
|
clean_FFmpeg
|
|
else
|
|
compile_FFmpeg
|
|
fi
|
|
else
|
|
compile_FFmpeg
|
|
fi
|
|
fi
|
|
}
|
|
|
|
|
|
#### Install on RPM-like ####
|
|
rpm_flavour() {
|
|
if [ -f /etc/redhat-release ]; then
|
|
if [ "`grep '[6-7]\.' /etc/redhat-release`" ]; then
|
|
RPM="RHEL"
|
|
else
|
|
RPM="FEDORA"
|
|
fi
|
|
elif [ -f /etc/SuSE-release ]; then
|
|
RPM="SUSE"
|
|
fi
|
|
}
|
|
|
|
get_package_version_RPM() {
|
|
rpm_flavour
|
|
if [ "$RPM" = "RHEL" ]; then
|
|
yum info $1 | grep Version | tail -n 1 | sed -r 's/.*:\s+(([0-9]+\.?)+).*/\1/'
|
|
elif [ "$RPM" = "FEDORA" ]; then
|
|
dnf info $1 | grep Version | tail -n 1 | sed -r 's/.*:\s+(([0-9]+\.?)+).*/\1/'
|
|
elif [ "$RPM" = "SUSE" ]; then
|
|
zypper info $1 | grep Version | tail -n 1 | sed -r 's/.*:\s+(([0-9]+\.?)+).*/\1/'
|
|
fi
|
|
}
|
|
|
|
check_package_RPM() {
|
|
rpm_flavour
|
|
if [ "$RPM" = "RHEL" ]; then
|
|
r=`yum info $1 | grep -c 'Summary'`
|
|
elif [ "$RPM" = "FEDORA" ]; then
|
|
r=`dnf info $1 | grep -c 'Summary'`
|
|
elif [ "$RPM" = "SUSE" ]; then
|
|
r=`zypper info $1 | grep -c 'Summary'`
|
|
fi
|
|
|
|
if [ $r -ge 1 ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
check_package_version_match_RPM() {
|
|
v=`get_package_version_RPM $1`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_match $v $2
|
|
return $?
|
|
}
|
|
|
|
check_package_version_ge_RPM() {
|
|
v=`get_package_version_RPM $1`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_ge $v $2
|
|
return $?
|
|
}
|
|
|
|
check_package_version_ge_lt_RPM() {
|
|
v=`get_package_version_RPM $1`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_ge_lt $v $2 $3
|
|
return $?
|
|
}
|
|
|
|
install_packages_RPM() {
|
|
rpm_flavour
|
|
if [ ! $SUDO ]; then
|
|
WARNING "--no-sudo enabled, impossible to install $@, you'll have to do it yourself..."
|
|
fi
|
|
if [ "$RPM" = "RHEL" ]; then
|
|
$SUDO yum install -y $@
|
|
if [ $? -ge 1 ]; then
|
|
ERROR "yum failed to install requested packages, exiting."
|
|
exit 1
|
|
fi
|
|
|
|
elif [ "$RPM" = "FEDORA" ]; then
|
|
$SUDO dnf install -y $@
|
|
if [ $? -ge 1 ]; then
|
|
ERROR "dnf failed to install requested packages, exiting."
|
|
exit 1
|
|
fi
|
|
|
|
elif [ "$RPM" = "SUSE" ]; then
|
|
$SUDO zypper --non-interactive install --auto-agree-with-licenses $@
|
|
if [ $? -ge 1 ]; then
|
|
ERROR "zypper failed to install requested packages, exiting."
|
|
exit 1
|
|
fi
|
|
fi
|
|
}
|
|
|
|
install_RPM() {
|
|
PRINT ""
|
|
INFO "Installing dependencies for RPM-based distribution"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$COMMON_INFO"`"
|
|
PRINT ""
|
|
|
|
if [ "$NO_CONFIRM" = false ]; then
|
|
read -p "Do you want to continue (Y/n)?"
|
|
[ "$(echo ${REPLY:=Y} | tr [:upper:] [:lower:])" != "y" ] && exit
|
|
fi
|
|
|
|
# Enable non-free repositories for all flavours
|
|
if [ ! $SUDO ]; then
|
|
WARNING "--no-sudo enabled, impossible to install third party repositories, you'll have to do it yourself..."
|
|
else
|
|
rpm_flavour
|
|
if [ "$RPM" = "FEDORA" ]; then
|
|
_fedora_rel="`egrep "[0-9]{1,}" /etc/fedora-release -o`"
|
|
$SUDO dnf -y install --nogpgcheck \
|
|
http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$_fedora_rel.noarch.rpm \
|
|
http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$_fedora_rel.noarch.rpm
|
|
|
|
$SUDO dnf -y update
|
|
|
|
elif [ "$RPM" = "RHEL" ]; then
|
|
if [ "`grep '6\.' /etc/redhat-release`" ]; then
|
|
ERROR "Building with GCC 4.4 is not supported!"
|
|
exit 1
|
|
else
|
|
$SUDO yum -y install --nogpgcheck \
|
|
http://download.fedoraproject.org/pub/epel/7/$(uname -i)/e/epel-release-7-6.noarch.rpm \
|
|
http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
|
|
|
|
$SUDO yum -y update
|
|
fi
|
|
|
|
elif [ "$RPM" = "SUSE" ]; then
|
|
# Packman repo now includes name in link...
|
|
_suse_rel="`grep -w VERSION /etc/os-release | sed 's/[^0-9.]*//g'`"
|
|
_suse_name="`grep -w NAME /etc/os-release | gawk '{print $2}' | sed 's/\"//'`"
|
|
if [ $_suse_name ]; then
|
|
_suse_rel="${_suse_name}_${_suse_rel}"
|
|
fi
|
|
|
|
PRINT ""
|
|
INFO "About to add 'packman' repository from http://packman.inode.at/suse/openSUSE_$_suse_rel/"
|
|
INFO "This is only needed if you do not already have a packman repository enabled..."
|
|
read -p "Do you want to add this repo (Y/n)?"
|
|
if [ "$(echo ${REPLY:=Y} | tr [:upper:] [:lower:])" == "y" ]; then
|
|
INFO " Installing packman..."
|
|
$SUDO zypper ar -f -n packman http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_$_suse_rel/ packman
|
|
INFO " Done."
|
|
else
|
|
INFO " Skipping packman installation."
|
|
fi
|
|
$SUDO zypper --non-interactive --gpg-auto-import-keys update --auto-agree-with-licenses
|
|
fi
|
|
fi
|
|
|
|
# These libs should always be available in fedora/suse official repository...
|
|
OPENJPEG_DEV="openjpeg-devel"
|
|
VORBIS_DEV="libvorbis-devel"
|
|
OGG_DEV="libogg-devel"
|
|
THEORA_DEV="libtheora-devel"
|
|
|
|
_packages="gcc gcc-c++ git make cmake tar bzip2 xz findutils flex bison \
|
|
libtiff-devel libjpeg-devel libpng-devel sqlite-devel fftw-devel SDL-devel \
|
|
libX11-devel libXi-devel libXcursor-devel libXrandr-devel libXinerama-devel \
|
|
wget ncurses-devel readline-devel $OPENJPEG_DEV openal-soft-devel \
|
|
glew-devel yasm $THEORA_DEV $VORBIS_DEV $OGG_DEV patch \
|
|
libxml2-devel yaml-cpp-devel tinyxml-devel jemalloc-devel"
|
|
|
|
OPENJPEG_USE=true
|
|
VORBIS_USE=true
|
|
OGG_USE=true
|
|
THEORA_USE=true
|
|
|
|
if [ "$RPM" = "FEDORA" -o "$RPM" = "RHEL" ]; then
|
|
_packages="$_packages freetype-devel tbb-devel"
|
|
|
|
if [ "$WITH_ALL" = true ]; then
|
|
_packages="$_packages jack-audio-connection-kit-devel"
|
|
fi
|
|
|
|
PRINT ""
|
|
install_packages_RPM $_packages
|
|
|
|
PRINT ""
|
|
X264_DEV="x264-devel"
|
|
check_package_version_ge_RPM $X264_DEV $X264_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM $X264_DEV
|
|
X264_USE=true
|
|
fi
|
|
|
|
if [ "$WITH_ALL" = true ]; then
|
|
PRINT ""
|
|
XVID_DEV="xvidcore-devel"
|
|
check_package_RPM $XVID_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM $XVID_DEV
|
|
XVID_USE=true
|
|
fi
|
|
|
|
PRINT ""
|
|
MP3LAME_DEV="lame-devel"
|
|
check_package_RPM $MP3LAME_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM $MP3LAME_DEV
|
|
MP3LAME_USE=true
|
|
fi
|
|
fi
|
|
|
|
elif [ "$RPM" = "SUSE" ]; then
|
|
_packages="$_packages freetype2-devel"
|
|
|
|
PRINT ""
|
|
install_packages_RPM $_packages
|
|
|
|
PRINT ""
|
|
# Install TBB on openSUSE, from temporary repo
|
|
check_package_RPM tbb-devel
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM tbb-devel
|
|
else
|
|
$SUDO zypper ar -f http://download.opensuse.org/repositories/devel:/libraries:/c_c++/openSUSE_$_suse_rel/devel:libraries:c_c++.repo
|
|
$SUDO zypper -n --gpg-auto-import-keys install tbb-devel
|
|
$SUDO zypper rr devel_libraries_c_c++
|
|
fi
|
|
|
|
PRINT ""
|
|
X264_DEV="libx264-devel"
|
|
check_package_version_ge_RPM $X264_DEV $X264_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM $X264_DEV
|
|
X264_USE=true
|
|
fi
|
|
|
|
if [ "$WITH_ALL" = true ]; then
|
|
PRINT ""
|
|
XVID_DEV="libxvidcore-devel"
|
|
check_package_RPM $XVID_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM $XVID_DEV
|
|
XVID_USE=true
|
|
fi
|
|
|
|
PRINT ""
|
|
MP3LAME_DEV="libmp3lame-devel"
|
|
check_package_RPM $MP3LAME_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM $MP3LAME_DEV
|
|
MP3LAME_USE=true
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
PRINT""
|
|
SNDFILE_DEV="libsndfile-devel"
|
|
check_package_RPM $SNDFILE_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM $SNDFILE_DEV
|
|
fi
|
|
|
|
if [ "$WITH_ALL" = true ]; then
|
|
PRINT ""
|
|
VPX_DEV="libvpx-devel"
|
|
check_package_version_ge_RPM $VPX_DEV $VPX_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM $VPX_DEV
|
|
VPX_USE=true
|
|
fi
|
|
PRINT ""
|
|
install_packages_RPM libspnav-devel
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_python=false
|
|
if [ "$PYTHON_SKIP" = true ]; then
|
|
WARNING "Skipping Python installation, as requested..."
|
|
elif [ "$PYTHON_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Python/NumPy building, as requested..."
|
|
_do_compile_python=true
|
|
else
|
|
check_package_version_match_RPM python3-devel $PYTHON_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM python3-devel
|
|
clean_Python
|
|
PRINT ""
|
|
if [ "$NUMPY_SKIP" = true ]; then
|
|
WARNING "Skipping NumPy installation, as requested..."
|
|
else
|
|
check_package_version_ge_RPM python3-numpy $NUMPY_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM python3-numpy
|
|
else
|
|
WARNING "Sorry, using python package but no valid numpy package available!" \
|
|
" Use --build-numpy to force building of both Python and NumPy."
|
|
fi
|
|
fi
|
|
else
|
|
_do_compile_python=true
|
|
fi
|
|
fi
|
|
|
|
if [ "$_do_compile_python" = true ]; then
|
|
compile_Python
|
|
PRINT ""
|
|
if [ "$NUMPY_SKIP" = true ]; then
|
|
WARNING "Skipping NumPy installation, as requested..."
|
|
else
|
|
compile_Numpy
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_boost=false
|
|
if [ "$BOOST_SKIP" = true ]; then
|
|
WARNING "Skipping Boost installation, as requested..."
|
|
elif [ "$BOOST_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Boost building, as requested..."
|
|
_do_compile_boost=true
|
|
else
|
|
check_package_version_ge_RPM boost-devel $BOOST_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM boost-devel
|
|
clean_Boost
|
|
else
|
|
_do_compile_boost=true
|
|
fi
|
|
fi
|
|
|
|
if [ "$_do_compile_boost" = true ]; then
|
|
if [ "$RPM" = "SUSE" ]; then
|
|
install_packages_RPM gcc-fortran
|
|
else
|
|
install_packages_RPM libquadmath-devel bzip2-devel
|
|
fi
|
|
PRINT ""
|
|
compile_Boost
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OCIO_SKIP" = true ]; then
|
|
WARNING "Skipping OpenColorIO installation, as requested..."
|
|
elif [ "$OCIO_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenColorIO building, as requested..."
|
|
compile_OCIO
|
|
else
|
|
if [ "$RPM" = "SUSE" ]; then
|
|
check_package_version_ge_RPM OpenColorIO-devel $OCIO_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM OpenColorIO-devel
|
|
clean_OCIO
|
|
else
|
|
compile_OCIO
|
|
fi
|
|
# XXX Fedora/RHEL OCIO still depends on libyaml-cpp v0.3 even when system default is v0.5!
|
|
else
|
|
compile_OCIO
|
|
fi
|
|
fi
|
|
|
|
PRINT ""
|
|
if [ "$OPENEXR_SKIP" = true ]; then
|
|
WARNING "Skipping ILMBase/OpenEXR installation, as requested..."
|
|
elif [ "$OPENEXR_FORCE_BUILD" = true ]; then
|
|
INFO "Forced ILMBase/OpenEXR building, as requested..."
|
|
compile_OPENEXR
|
|
else
|
|
check_package_version_ge_RPM openexr-devel $OPENEXR_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM openexr-devel
|
|
OPENEXR_VERSION=`get_package_version_RPM openexr-devel`
|
|
ILMBASE_VERSION=$OPENEXR_VERSION
|
|
clean_OPENEXR
|
|
else
|
|
compile_OPENEXR
|
|
fi
|
|
fi
|
|
|
|
PRINT ""
|
|
if [ "$OIIO_SKIP" = true ]; then
|
|
WARNING "Skipping OpenImageIO installation, as requested..."
|
|
elif [ "$OIIO_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenImageIO building, as requested..."
|
|
compile_OIIO
|
|
else
|
|
# XXX RPM distros pulls in too much and depends on old libs, so better to build for now...
|
|
#check_package_version_ge_lt_RPM OpenImageIO-devel $OIIO_VERSION_MIN $OIIO_VERSION_MAX
|
|
#if [ $? -eq 0 -a $_with_built_openexr == false ]; then
|
|
# install_packages_RPM OpenImageIO-devel
|
|
# clean_OIIO
|
|
#else
|
|
compile_OIIO
|
|
#fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
have_llvm=false
|
|
_do_compile_llvm=false
|
|
if [ "$LLVM_SKIP" = true ]; then
|
|
WARNING "Skipping LLVM installation, as requested (this also implies skipping OSL!)..."
|
|
OSL_SKIP=true
|
|
elif [ "$LLVM_FORCE_BUILD" = true ]; then
|
|
INFO "Forced LLVM building, as requested..."
|
|
_do_compile_llvm=true
|
|
else
|
|
if [ "$RPM" = "SUSE" ]; then
|
|
CLANG_DEV="llvm-clang-devel"
|
|
else
|
|
CLANG_DEV="clang-devel"
|
|
fi
|
|
# XXX RHEL has 3.4 in repo but OSL complains about not finding MCJIT_LIBRARY, so compile for now...
|
|
#check_package_version_match_RPM $CLANG_DEV $LLVM_VERSION
|
|
#if [ $? -eq 0 ]; then
|
|
# install_packages_RPM llvm-devel $CLANG_DEV
|
|
# have_llvm=true
|
|
# LLVM_VERSION_FOUND=$LLVM_VERSION
|
|
# clean_LLVM
|
|
#else
|
|
_do_compile_llvm=true
|
|
#fi
|
|
fi
|
|
|
|
if [ "$_do_compile_llvm" = true ]; then
|
|
install_packages_RPM libffi-devel
|
|
# LLVM can't find the fedora ffi header dir...
|
|
_FFI_INCLUDE_DIR=`rpm -ql libffi-devel | grep -e ".*/ffi.h" | sed -r 's/(.*)\/ffi.h/\1/'`
|
|
PRINT ""
|
|
compile_LLVM
|
|
have_llvm=true
|
|
LLVM_VERSION_FOUND=$LLVM_VERSION
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_osl=false
|
|
if [ "$OSL_SKIP" = true ]; then
|
|
WARNING "Skipping OpenShadingLanguage installation, as requested..."
|
|
elif [ "$OSL_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenShadingLanguage building, as requested..."
|
|
_do_compile_osl=true
|
|
else
|
|
# No package currently!
|
|
_do_compile_osl=true
|
|
fi
|
|
|
|
if [ "$_do_compile_osl" = true ]; then
|
|
if [ "$have_llvm" = true ]; then
|
|
PRINT ""
|
|
compile_OSL
|
|
else
|
|
WARNING "No LLVM available, cannot build OSL!"
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OSD_SKIP" = true ]; then
|
|
WARNING "Skipping OpenSubdiv installation, as requested..."
|
|
elif [ "$OSD_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenSubdiv building, as requested..."
|
|
compile_OSD
|
|
else
|
|
# No package currently!
|
|
compile_OSD
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OPENVDB_SKIP" = true ]; then
|
|
WARNING "Skipping OpenVDB installation, as requested..."
|
|
elif [ "$OPENVDB_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenVDB building, as requested..."
|
|
compile_OPENVDB
|
|
else
|
|
# No package currently!
|
|
compile_OPENVDB
|
|
fi
|
|
|
|
PRINT ""
|
|
if [ "$ALEMBIC_SKIP" = true ]; then
|
|
WARNING "Skipping Alembic installation, as requested..."
|
|
elif [ "$ALEMBIC_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Alembic building, as requested..."
|
|
compile_ALEMBIC
|
|
else
|
|
# No package currently!
|
|
compile_ALEMBIC
|
|
fi
|
|
|
|
|
|
if [ "$WITH_OPENCOLLADA" = true ]; then
|
|
PRINT ""
|
|
_do_compile_collada=false
|
|
if [ "$OPENCOLLADA_SKIP" = true ]; then
|
|
WARNING "Skipping OpenCOLLADA installation, as requested..."
|
|
elif [ "$OPENCOLLADA_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenCollada building, as requested..."
|
|
_do_compile_collada=true
|
|
else
|
|
# No package...
|
|
_do_compile_collada=true
|
|
fi
|
|
|
|
if [ "$_do_compile_collada" = true ]; then
|
|
install_packages_RPM pcre-devel
|
|
# Find path to libxml shared lib...
|
|
_XML2_LIB=`rpm -ql libxml2-devel | grep -e ".*/libxml2.so"`
|
|
PRINT ""
|
|
compile_OpenCOLLADA
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$FFMPEG_SKIP" = true ]; then
|
|
WARNING "Skipping FFMpeg installation, as requested..."
|
|
elif [ "$FFMPEG_FORCE_BUILD" = true ]; then
|
|
INFO "Forced FFMpeg building, as requested..."
|
|
compile_FFmpeg
|
|
else
|
|
check_package_version_ge_RPM ffmpeg-devel $FFMPEG_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_RPM ffmpeg ffmpeg-devel
|
|
clean_FFmpeg
|
|
else
|
|
compile_FFmpeg
|
|
fi
|
|
fi
|
|
}
|
|
|
|
|
|
#### Install on ARCH-like ####
|
|
get_package_version_ARCH() {
|
|
pacman -Si $1 | grep Version | tail -n 1 | sed -r 's/.*:\s+?(([0-9]+\.?)+).*/\1/'
|
|
}
|
|
|
|
check_package_ARCH() {
|
|
r=`pacman -Si $1 | grep -c 'Description'`
|
|
|
|
if [ $r -ge 1 ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
check_package_version_match_ARCH() {
|
|
v=`get_package_version_ARCH $1`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_match $v $2
|
|
return $?
|
|
}
|
|
|
|
check_package_version_ge_ARCH() {
|
|
v=`get_package_version_ARCH $1`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_ge $v $2
|
|
return $?
|
|
}
|
|
|
|
check_package_version_ge_lt_ARCH() {
|
|
v=`get_package_version_ARCH $1`
|
|
|
|
if [ -z "$v" ]; then
|
|
return 1
|
|
fi
|
|
|
|
version_ge_lt $v $2 $3
|
|
return $?
|
|
}
|
|
|
|
install_packages_ARCH() {
|
|
if [ ! $SUDO ]; then
|
|
WARNING "--no-sudo enabled, impossible to run pacman for $@, you'll have to do it yourself..."
|
|
else
|
|
$SUDO pacman -S --needed --noconfirm $@
|
|
if [ $? -ge 1 ]; then
|
|
ERROR "pacman failed to install requested packages, exiting."
|
|
exit 1
|
|
fi
|
|
fi
|
|
}
|
|
|
|
install_ARCH() {
|
|
PRINT ""
|
|
INFO "Installing dependencies for ARCH-based distribution"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$COMMON_INFO"`"
|
|
PRINT ""
|
|
|
|
if [ "$NO_CONFIRM" = false ]; then
|
|
read -p "Do you want to continue (Y/n)?"
|
|
[ "$(echo ${REPLY:=Y} | tr [:upper:] [:lower:])" != "y" ] && exit
|
|
fi
|
|
|
|
# Check for sudo...
|
|
if [ $SUDO ]; then
|
|
if [ ! -x "/usr/bin/sudo" ]; then
|
|
PRINT ""
|
|
ERROR "This script requires sudo but it is not installed."
|
|
PRINT "Please setup sudo according to:"
|
|
PRINT "https://wiki.archlinux.org/index.php/Sudo"
|
|
PRINT "and try again."
|
|
PRINT ""
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
if [ ! $SUDO ]; then
|
|
WARNING "--no-sudo enabled, impossible to run pacman -Sy, you'll have to do it yourself..."
|
|
else
|
|
$SUDO pacman -Sy
|
|
fi
|
|
|
|
# These libs should always be available in arch official repository...
|
|
OPENJPEG_DEV="openjpeg"
|
|
VORBIS_DEV="libvorbis"
|
|
OGG_DEV="libogg"
|
|
THEORA_DEV="libtheora"
|
|
|
|
BASE_DEVEL="base-devel"
|
|
|
|
# Avoid conflicts when gcc-multilib is installed
|
|
pacman -Qi gcc-multilib &>/dev/null
|
|
if [ $? -eq 0 ]; then
|
|
BASE_DEVEL=`pacman -Sgq base-devel | sed -e 's/^gcc$/gcc-multilib/g' | paste -s -d' '`
|
|
fi
|
|
|
|
_packages="$BASE_DEVEL git cmake \
|
|
libxi libxcursor libxrandr libxinerama glew libpng libtiff wget openal \
|
|
$OPENJPEG_DEV $VORBIS_DEV $OGG_DEV $THEORA_DEV yasm sdl fftw intel-tbb \
|
|
libxml2 yaml-cpp tinyxml python-requests jemalloc"
|
|
|
|
OPENJPEG_USE=true
|
|
VORBIS_USE=true
|
|
OGG_USE=true
|
|
THEORA_USE=true
|
|
|
|
if [ "$WITH_ALL" = true ]; then
|
|
_packages="$_packages jack libspnav"
|
|
fi
|
|
|
|
PRINT ""
|
|
install_packages_ARCH $_packages
|
|
|
|
PRINT""
|
|
SNDFILE_DEV="libsndfile"
|
|
check_package_ARCH $SNDFILE_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH $SNDFILE_DEV
|
|
fi
|
|
|
|
PRINT ""
|
|
X264_DEV="x264"
|
|
check_package_version_ge_ARCH $X264_DEV $X264_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH $X264_DEV
|
|
X264_USE=true
|
|
fi
|
|
|
|
if [ "$WITH_ALL" = true ]; then
|
|
PRINT ""
|
|
XVID_DEV="xvidcore"
|
|
check_package_ARCH $XVID_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH $XVID_DEV
|
|
XVID_USE=true
|
|
fi
|
|
|
|
PRINT ""
|
|
MP3LAME_DEV="lame"
|
|
check_package_ARCH $MP3LAME_DEV
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH $MP3LAME_DEV
|
|
MP3LAME_USE=true
|
|
fi
|
|
|
|
PRINT ""
|
|
VPX_DEV="libvpx"
|
|
check_package_version_ge_ARCH $VPX_DEV $VPX_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH $VPX_DEV
|
|
VPX_USE=true
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_python=false
|
|
if [ "$PYTHON_SKIP" = true ]; then
|
|
WARNING "Skipping Python installation, as requested..."
|
|
elif [ "$PYTHON_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Python/NumPy building, as requested..."
|
|
_do_compile_python=true
|
|
else
|
|
check_package_version_ge_ARCH python $PYTHON_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH python
|
|
clean_Python
|
|
PRINT ""
|
|
if [ "$NUMPY_SKIP" = true ]; then
|
|
WARNING "Skipping NumPy installation, as requested..."
|
|
else
|
|
check_package_version_ge_ARCH python-numpy $NUMPY_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH python-numpy
|
|
else
|
|
WARNING "Sorry, using python package but no valid numpy package available!" \
|
|
"Use --build-numpy to force building of both Python and NumPy."
|
|
fi
|
|
fi
|
|
else
|
|
_do_compile_python=true
|
|
fi
|
|
fi
|
|
|
|
if [ "$_do_compile_python" = true ]; then
|
|
compile_Python
|
|
PRINT ""
|
|
if [ "$NUMPY_SKIP" = true ]; then
|
|
WARNING "Skipping NumPy installation, as requested..."
|
|
else
|
|
compile_Numpy
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$BOOST_SKIP" = true ]; then
|
|
WARNING "Skipping Boost installation, as requested..."
|
|
elif [ "$BOOST_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Boost building, as requested..."
|
|
compile_Boost
|
|
else
|
|
check_package_version_ge_ARCH boost $BOOST_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH boost
|
|
clean_Boost
|
|
else
|
|
compile_Boost
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OCIO_SKIP" = true ]; then
|
|
WARNING "Skipping OpenColorIO installation, as requested..."
|
|
elif [ "$OCIO_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenColorIO building, as requested..."
|
|
compile_OCIO
|
|
else
|
|
check_package_version_ge_ARCH opencolorio $OCIO_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH opencolorio
|
|
clean_OCIO
|
|
else
|
|
compile_OCIO
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OPENEXR_SKIP" = true ]; then
|
|
WARNING "Skipping ILMBase/OpenEXR installation, as requested..."
|
|
elif [ "$OPENEXR_FORCE_BUILD" = true ]; then
|
|
INFO "Forced ILMBase/OpenEXR building, as requested..."
|
|
compile_OPENEXR
|
|
else
|
|
check_package_version_ge_ARCH openexr $OPENEXR_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH openexr
|
|
OPENEXR_VERSION=`get_package_version_ARCH openexr`
|
|
ILMBASE_VERSION=$OPENEXR_VERSION
|
|
clean_OPENEXR
|
|
else
|
|
compile_OPENEXR
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OIIO_SKIP" = true ]; then
|
|
WARNING "Skipping OpenImageIO installation, as requested..."
|
|
elif [ "$OIIO_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenImageIO building, as requested..."
|
|
compile_OIIO
|
|
else
|
|
check_package_version_ge_lt_ARCH openimageio $OIIO_VERSION_MIN $OIIO_VERSION_MAX
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH openimageio
|
|
clean_OIIO
|
|
else
|
|
compile_OIIO
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
have_llvm=false
|
|
_do_compile_llvm=false
|
|
if [ "$LLVM_SKIP" = true ]; then
|
|
WARNING "Skipping LLVM installation, as requested (this also implies skipping OSL!)..."
|
|
OSL_SKIP=true
|
|
elif [ "$LLVM_FORCE_BUILD" = true ]; then
|
|
INFO "Forced LLVM building, as requested..."
|
|
_do_compile_llvm=true
|
|
else
|
|
check_package_version_match_ARCH llvm35 $LLVM_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH llvm35 clang35
|
|
have_llvm=true
|
|
LLVM_VERSION=`get_package_version_ARCH llvm35`
|
|
LLVM_VERSION_FOUND=$LLVM_VERSION
|
|
clean_LLVM
|
|
else
|
|
_do_compile_llvm=true
|
|
fi
|
|
fi
|
|
|
|
if [ "$_do_compile_llvm" = true ]; then
|
|
install_packages_ARCH libffi
|
|
# LLVM can't find the arch ffi header dir...
|
|
_FFI_INCLUDE_DIR=`pacman -Ql libffi | grep -e ".*/ffi.h" | awk '{print $2}' | sed -r 's/(.*)\/ffi.h/\1/'`
|
|
PRINT ""
|
|
compile_LLVM
|
|
have_llvm=true
|
|
LLVM_VERSION_FOUND=$LLVM_VERSION
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_osl=false
|
|
if [ "$OSL_SKIP" = true ]; then
|
|
WARNING "Skipping OpenShadingLanguage installation, as requested..."
|
|
elif [ "$OSL_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenShadingLanguage building, as requested..."
|
|
_do_compile_osl=true
|
|
else
|
|
# XXX Compile for now due to requirement of LLVM 3.4 ...
|
|
#check_package_version_ge_ARCH openshadinglanguage $OSL_VERSION_MIN
|
|
#if [ $? -eq 0 ]; then
|
|
# install_packages_ARCH openshadinglanguage
|
|
# clean_OSL
|
|
#else
|
|
_do_compile_osl=true
|
|
#fi
|
|
fi
|
|
|
|
if [ "$_do_compile_osl" = true ]; then
|
|
if [ "$have_llvm" = true ]; then
|
|
PRINT ""
|
|
compile_OSL
|
|
else
|
|
WARNING "No LLVM available, cannot build OSL!"
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OSD_SKIP" = true ]; then
|
|
WARNING "Skipping OpenSubdiv installation, as requested..."
|
|
elif [ "$OSD_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenSubdiv building, as requested..."
|
|
compile_OSD
|
|
else
|
|
check_package_version_ge_ARCH opensubdiv $OSD_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH opensubdiv
|
|
clean_OSD
|
|
else
|
|
compile_OSD
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OPENVDB_SKIP" = true ]; then
|
|
WARNING "Skipping OpenVDB installation, as requested..."
|
|
elif [ "$OPENVDB_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenVDB building, as requested..."
|
|
compile_OPENVDB
|
|
else
|
|
check_package_version_ge_ARCH openvdb $OPENVDB_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH openvdb
|
|
clean_OPENVDB
|
|
else
|
|
compile_OPENVDB
|
|
fi
|
|
fi
|
|
|
|
PRINT ""
|
|
if [ "$ALEMBIC_SKIP" = true ]; then
|
|
WARNING "Skipping Alembic installation, as requested..."
|
|
elif [ "$ALEMBIC_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Alembic building, as requested..."
|
|
compile_ALEMBIC
|
|
else
|
|
compile_ALEMBIC
|
|
fi
|
|
|
|
|
|
if [ "$WITH_OPENCOLLADA" = true ]; then
|
|
PRINT ""
|
|
_do_compile_collada=false
|
|
if [ "$OPENCOLLADA_SKIP" = true ]; then
|
|
WARNING "Skipping OpenCOLLADA installation, as requested..."
|
|
elif [ "$OPENCOLLADA_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenCollada building, as requested..."
|
|
_do_compile_collada=true
|
|
else
|
|
check_package_ARCH opencollada
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH opencollada
|
|
clean_OpenCOLLADA
|
|
else
|
|
_do_compile_collada=true
|
|
fi
|
|
fi
|
|
|
|
if [ "$_do_compile_collada" = true ]; then
|
|
install_packages_ARCH pcre
|
|
# Find path to libxml shared lib...
|
|
_XML2_LIB=`pacman -Ql libxml2 | grep -e ".*/libxml2.so$" | gawk '{print $2}'`
|
|
PRINT ""
|
|
compile_OpenCOLLADA
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$FFMPEG_SKIP" = true ]; then
|
|
WARNING "Skipping FFMpeg installation, as requested..."
|
|
elif [ "$FFMPEG_FORCE_BUILD" = true ]; then
|
|
INFO "Forced FFMpeg building, as requested..."
|
|
compile_FFmpeg
|
|
else
|
|
check_package_version_ge_ARCH ffmpeg $FFMPEG_VERSION_MIN
|
|
if [ $? -eq 0 ]; then
|
|
install_packages_ARCH ffmpeg
|
|
clean_FFmpeg
|
|
else
|
|
compile_FFmpeg
|
|
fi
|
|
fi
|
|
}
|
|
|
|
|
|
#### Install on other distro (very limited!) ####
|
|
|
|
install_OTHER() {
|
|
PRINT ""
|
|
WARNING "Attempt to build main dependencies for other linux distributions."
|
|
PRINT ""
|
|
PRINT "`eval _echo "$COMMON_INFO"`"
|
|
PRINT ""
|
|
|
|
ERROR "Failed to detect distribution type."
|
|
PRINT ""
|
|
PRINT "Your distribution is not supported by this script, you'll have to install dependencies and"
|
|
PRINT "dev packages yourself. However, this script can still attempt to build main (complex) libraries for you,"
|
|
PRINT "if you use '--build-foo' options (you can try '--build-all' one first)."
|
|
PRINT ""
|
|
PRINT "Quite obviously, it assumes dependencies from those libraries are already available, otherwise please"
|
|
PRINT "install them (you can also use error messages printed out by build process to find missing libraries...)."
|
|
PRINT ""
|
|
PRINT "`eval _echo "$DEPS_COMMON_INFO"`"
|
|
PRINT ""
|
|
PRINT "`eval _echo "$DEPS_SPECIFIC_INFO"`"
|
|
PRINT ""
|
|
|
|
if [ "$NO_CONFIRM" = false ]; then
|
|
read -p "Do you want to continue (Y/n)?"
|
|
[ "$(echo ${REPLY:=Y} | tr [:upper:] [:lower:])" != "y" ] && exit
|
|
fi
|
|
|
|
PRINT ""
|
|
_do_compile_python=false
|
|
if [ "$PYTHON_SKIP" = true ]; then
|
|
WARNING "Skipping Python/NumPy installation, as requested..."
|
|
elif [ "$PYTHON_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Python/NumPy building, as requested..."
|
|
_do_compile_python=true
|
|
fi
|
|
|
|
if [ "$_do_compile_python" = true ]; then
|
|
compile_Python
|
|
PRINT ""
|
|
if [ "$NUMPY_SKIP" = true ]; then
|
|
WARNING "Skipping NumPy installation, as requested..."
|
|
else
|
|
compile_Numpy
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$BOOST_SKIP" = true ]; then
|
|
WARNING "Skipping Boost installation, as requested..."
|
|
elif [ "$BOOST_FORCE_BUILD" = true ]; then
|
|
INFO "Forced Boost building, as requested..."
|
|
compile_Boost
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OCIO_SKIP" = true ]; then
|
|
WARNING "Skipping OpenColorIO installation, as requested..."
|
|
elif [ "$OCIO_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenColorIO building, as requested..."
|
|
compile_OCIO
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OPENEXR_SKIP" = true ]; then
|
|
WARNING "Skipping ILMBase/OpenEXR installation, as requested..."
|
|
elif [ "$OPENEXR_FORCE_BUILD" = true ]; then
|
|
INFO "Forced ILMBase/OpenEXR building, as requested..."
|
|
compile_OPENEXR
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$OIIO_SKIP" = true ]; then
|
|
WARNING "Skipping OpenImageIO installation, as requested..."
|
|
elif [ "$OIIO_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenImageIO building, as requested..."
|
|
compile_OIIO
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
have_llvm=false
|
|
_do_compile_llvm=false
|
|
if [ "$LLVM_SKIP" = true ]; then
|
|
WARNING "Skipping LLVM installation, as requested (this also implies skipping OSL!)..."
|
|
elif [ "$LLVM_FORCE_BUILD" = true ]; then
|
|
INFO "Forced LLVM building, as requested..."
|
|
_do_compile_llvm=true
|
|
fi
|
|
|
|
if [ "$_do_compile_llvm" = true ]; then
|
|
PRINT ""
|
|
compile_LLVM
|
|
have_llvm=true
|
|
LLVM_VERSION_FOUND=$LLVM_VERSION
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_osl=false
|
|
if [ "$OSL_SKIP" = true ]; then
|
|
WARNING "Skipping OpenShadingLanguage installation, as requested..."
|
|
elif [ "$OSL_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenShadingLanguage building, as requested..."
|
|
_do_compile_osl=true
|
|
fi
|
|
|
|
if [ "$_do_compile_osl" = true ]; then
|
|
if [ "$have_llvm" = true ]; then
|
|
PRINT ""
|
|
compile_OSL
|
|
else
|
|
WARNING "No LLVM available, cannot build OSL!"
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
_do_compile_osd=false
|
|
if [ "$OSD_SKIP" = true ]; then
|
|
WARNING "Skipping OpenSubdiv installation, as requested..."
|
|
elif [ "$OSD_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenSubdiv building, as requested..."
|
|
_do_compile_osd=true
|
|
fi
|
|
|
|
if [ "$_do_compile_osd" = true ]; then
|
|
PRINT ""
|
|
compile_OSD
|
|
fi
|
|
|
|
|
|
if [ "$WITH_OPENCOLLADA" = true ]; then
|
|
_do_compile_collada=false
|
|
PRINT ""
|
|
if [ "$OPENCOLLADA_SKIP" = true ]; then
|
|
WARNING "Skipping OpenCOLLADA installation, as requested..."
|
|
elif [ "$OPENCOLLADA_FORCE_BUILD" = true ]; then
|
|
INFO "Forced OpenCollada building, as requested..."
|
|
_do_compile_collada=true
|
|
fi
|
|
|
|
if [ "$_do_compile_collada" = true ]; then
|
|
PRINT ""
|
|
compile_OpenCOLLADA
|
|
fi
|
|
fi
|
|
|
|
|
|
PRINT ""
|
|
if [ "$FFMPEG_SKIP" = true ]; then
|
|
WARNING "Skipping FFMpeg installation, as requested..."
|
|
elif [ "$FFMPEG_FORCE_BUILD" = true ]; then
|
|
INFO "Forced FFMpeg building, as requested..."
|
|
compile_FFmpeg
|
|
fi
|
|
}
|
|
|
|
#### Printing User Info ####
|
|
|
|
print_info_ffmpeglink_DEB() {
|
|
dpkg -L $_packages | grep -e ".*\/lib[^\/]\+\.so" | gawk '{ printf(nlines ? "'"$_ffmpeg_list_sep"'%s" : "%s", gensub(/.*lib([^\/]+)\.so/, "\\1", "g", $0)); nlines++ }'
|
|
}
|
|
|
|
print_info_ffmpeglink_RPM() {
|
|
rpm -ql $_packages | grep -e ".*\/lib[^\/]\+\.so" | gawk '{ printf(nlines ? "'"$_ffmpeg_list_sep"'%s" : "%s", gensub(/.*lib([^\/]+)\.so/, "\\1", "g", $0)); nlines++ }'
|
|
}
|
|
|
|
print_info_ffmpeglink_ARCH() {
|
|
pacman -Ql $_packages | grep -e ".*\/lib[^\/]\+\.so$" | gawk '{ printf(nlines ? "'"$_ffmpeg_list_sep"'%s" : "%s", gensub(/.*lib([^\/]+)\.so/, "\\1", "g", $0)); nlines++ }'
|
|
}
|
|
|
|
print_info_ffmpeglink() {
|
|
# This func must only print a ';'-separated list of libs...
|
|
if [ -z "$DISTRO" ]; then
|
|
ERROR "Failed to detect distribution type"
|
|
exit 1
|
|
fi
|
|
|
|
# Create list of packages from which to get libs names...
|
|
_packages=""
|
|
|
|
if [ "$THEORA_USE" = true ]; then
|
|
_packages="$_packages $THEORA_DEV"
|
|
fi
|
|
|
|
if [ "$VORBIS_USE" = true ]; then
|
|
_packages="$_packages $VORBIS_DEV"
|
|
fi
|
|
|
|
if [ "$OGG_USE" = true ]; then
|
|
_packages="$_packages $OGG_DEV"
|
|
fi
|
|
|
|
if [ "$XVID_USE" = true ]; then
|
|
_packages="$_packages $XVID_DEV"
|
|
fi
|
|
|
|
if [ "$VPX_USE" = true ]; then
|
|
_packages="$_packages $VPX_DEV"
|
|
fi
|
|
|
|
if [ "$MP3LAME_USE" = true ]; then
|
|
_packages="$_packages $MP3LAME_DEV"
|
|
fi
|
|
|
|
if [ "$X264_USE" = true ]; then
|
|
_packages="$_packages $X264_DEV"
|
|
fi
|
|
|
|
if [ "$OPENJPEG_USE" = true ]; then
|
|
_packages="$_packages $OPENJPEG_DEV"
|
|
fi
|
|
|
|
if [ "$DISTRO" = "DEB" ]; then
|
|
print_info_ffmpeglink_DEB
|
|
elif [ "$DISTRO" = "RPM" ]; then
|
|
print_info_ffmpeglink_RPM
|
|
elif [ "$DISTRO" = "ARCH" ]; then
|
|
print_info_ffmpeglink_ARCH
|
|
# XXX TODO!
|
|
else
|
|
PRINT "<Could not determine additional link libraries needed for ffmpeg, replace this by valid list of libs...>"
|
|
fi
|
|
}
|
|
|
|
print_info() {
|
|
PRINT ""
|
|
PRINT ""
|
|
PRINT "Ran with:"
|
|
PRINT " install_deps.sh $COMMANDLINE"
|
|
PRINT ""
|
|
PRINT ""
|
|
PRINT "If you're using CMake add this to your configuration flags:"
|
|
|
|
_buildargs="-U *SNDFILE* -U *PYTHON* -U *BOOST* -U *Boost*"
|
|
_buildargs="$_buildargs -U *OPENCOLORIO* -U *OPENEXR* -U *OPENIMAGEIO* -U *LLVM* -U *CYCLES*"
|
|
_buildargs="$_buildargs -U *OPENSUBDIV* -U *OPENVDB* -U *COLLADA* -U *FFMPEG* -U *ALEMBIC*"
|
|
|
|
if [ "$USE_CXX11" = true ]; then
|
|
_1="-D WITH_CXX11=ON"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
|
|
_1="-D WITH_CODEC_SNDFILE=ON"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
|
|
_1="-D PYTHON_VERSION=$PYTHON_VERSION_MIN"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
if [ -d $INST/python-$PYTHON_VERSION_MIN ]; then
|
|
_1="-D PYTHON_ROOT_DIR=$INST/python-$PYTHON_VERSION_MIN"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
|
|
if [ -d $INST/boost ]; then
|
|
_1="-D BOOST_ROOT=$INST/boost"
|
|
_2="-D Boost_NO_SYSTEM_PATHS=ON"
|
|
PRINT " $_1"
|
|
PRINT " $_2"
|
|
_buildargs="$_buildargs $_1 $_2"
|
|
fi
|
|
|
|
if [ "$OCIO_SKIP" = false ]; then
|
|
_1="-D WITH_OPENCOLORIO=ON"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
if [ -d $INST/ocio ]; then
|
|
_1="-D OPENCOLORIO_ROOT_DIR=$INST/ocio"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
fi
|
|
|
|
if [ -d $INST/openexr ]; then
|
|
_1="-D OPENEXR_ROOT_DIR=$INST/openexr"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
|
|
if [ -d $INST/oiio ]; then
|
|
_1="-D WITH_OPENIMAGEIO=ON"
|
|
_2="-D OPENIMAGEIO_ROOT_DIR=$INST/oiio"
|
|
PRINT " $_1"
|
|
PRINT " $_2"
|
|
_buildargs="$_buildargs $_1 $_2"
|
|
fi
|
|
|
|
if [ "$OSL_SKIP" = false ]; then
|
|
_1="-D WITH_CYCLES_OSL=ON"
|
|
_2="-D WITH_LLVM=ON"
|
|
_3="-D LLVM_VERSION=$LLVM_VERSION_FOUND"
|
|
PRINT " $_1"
|
|
PRINT " $_2"
|
|
PRINT " $_3"
|
|
_buildargs="$_buildargs $_1 $_2 $_3"
|
|
if [ -d $INST/osl ]; then
|
|
_1="-D OSL_ROOT_DIR=$INST/osl"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
if [ -d $INST/llvm ]; then
|
|
_1="-D LLVM_ROOT_DIR=$INST/llvm"
|
|
_2="-D LLVM_STATIC=ON"
|
|
PRINT " $_1"
|
|
PRINT " $_2"
|
|
_buildargs="$_buildargs $_1 $_2"
|
|
fi
|
|
else
|
|
_1="-D WITH_CYCLES_OSL=OFF"
|
|
_2="-D WITH_LLVM=OFF"
|
|
PRINT " $_1"
|
|
PRINT " $_2"
|
|
_buildargs="$_buildargs $_1 $_2"
|
|
fi
|
|
|
|
if [ "$OSD_SKIP" = false ]; then
|
|
_1="-D WITH_OPENSUBDIV=ON"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
if [ -d $INST/osd ]; then
|
|
_1="-D OPENSUBDIV_ROOT_DIR=$INST/osd"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
fi
|
|
|
|
if [ "$OPENVDB_SKIP" = false ]; then
|
|
_1="-D WITH_OPENVDB=ON"
|
|
_2="-D WITH_OPENVDB_BLOSC=ON"
|
|
PRINT " $_1"
|
|
PRINT " $_2"
|
|
_buildargs="$_buildargs $_1 $_2"
|
|
if [ -d $INST/openvdb ]; then
|
|
_1="-D OPENVDB_ROOT_DIR=$INST/openvdb"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
fi
|
|
|
|
if [ "$WITH_OPENCOLLADA" = true ]; then
|
|
_1="-D WITH_OPENCOLLADA=ON"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
|
|
if [ "$ALEMBIC_SKIP" = false ]; then
|
|
_1="-D WITH_ALEMBIC=ON"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
if [ -d $INST/alembic ]; then
|
|
_1="-D ALEMBIC_ROOT_DIR=$INST/alembic"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
fi
|
|
|
|
if [ "$NO_SYSTEM_GLEW" = true ]; then
|
|
_1="-D WITH_SYSTEM_GLEW=OFF"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
|
|
if [ "$FFMPEG_SKIP" = false ]; then
|
|
_1="-D WITH_CODEC_FFMPEG=ON"
|
|
_2="-D FFMPEG_LIBRARIES='avformat;avcodec;avutil;avdevice;swscale;swresample;lzma;rt;`print_info_ffmpeglink`'"
|
|
PRINT " $_1"
|
|
PRINT " $_2"
|
|
_buildargs="$_buildargs $_1 $_2"
|
|
if [ -d $INST/ffmpeg ]; then
|
|
_1="-D FFMPEG=$INST/ffmpeg"
|
|
PRINT " $_1"
|
|
_buildargs="$_buildargs $_1"
|
|
fi
|
|
fi
|
|
|
|
PRINT ""
|
|
PRINT "Or even simpler, just run (in your blender-source dir):"
|
|
PRINT " make -j$THREADS BUILD_CMAKE_ARGS=\"$_buildargs\""
|
|
}
|
|
|
|
#### "Main" ####
|
|
# Detect distribution type used on this machine
|
|
if [ -f /etc/debian_version ]; then
|
|
DISTRO="DEB"
|
|
install_DEB
|
|
elif [ -f /etc/arch-release ]; then
|
|
DISTRO="ARCH"
|
|
install_ARCH
|
|
elif [ -f /etc/redhat-release -o /etc/SuSE-release ]; then
|
|
DISTRO="RPM"
|
|
install_RPM
|
|
else
|
|
DISTRO="OTHER"
|
|
install_OTHER
|
|
fi
|
|
|
|
print_info | tee $INFO_PATH/BUILD_NOTES.txt
|
|
PRINT ""
|
|
PRINT "This information has been written to $INFO_PATH/BUILD_NOTES.txt"
|
|
PRINT ""
|
|
|
|
# Switch back to user language.
|
|
LANG=LANG_BACK
|
|
export LANG
|
|
|
|
CXXFLAGS=$CXXFLAGS_BACK
|
|
export CXXFLAGS
|