Skip to content

Commit

Permalink
update build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Jun 14, 2021
1 parent 4af0454 commit 7e9644a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ install:
- tools/travis/install_dependencies.sh
- if [ ! -d "$HOME/OpenColorIO-Configs" ]; then
pushd $HOME;
curl -k -L https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.3.tar.gz | tar -xvzf -;
mv OpenColorIO-Configs-Natron-v2.3 OpenColorIO-Configs;
curl -k -L https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.4.tar.gz | tar -xvzf -;
mv OpenColorIO-Configs-Natron-v2.4 OpenColorIO-Configs;
popd;
else
echo 'Using cached OpenColorIO-Configs';
Expand Down
10 changes: 5 additions & 5 deletions INSTALL_LINUX.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,16 +122,16 @@ git submodule update -i --recursive
### Download OpenColorIO-Configs

In the past, OCIO configs were a submodule, though due to the size of the repository, we have chosen instead
to make a tarball release and let you download it [here](https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.3.tar.gz).
to make a tarball release and let you download it [here](https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.4.tar.gz).
Place it at the root of Natron repository.

***note:*** *If it is name something like: `OpenColorIO-Configs-Natron-v2.3` rename it to `OpenColorIO-Configs`*
***note:*** *If it is name something like: `OpenColorIO-Configs-Natron-v2.4` rename it to `OpenColorIO-Configs`*


```
wget https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.3.tar.gz
tar -xvzf Natron-v2.3.tar.gz
mv OpenColorIO-Configs-Natron-v2.3 OpenColorIO-Configs
wget https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.4.tar.gz
tar -xvzf Natron-v2.4.tar.gz
mv OpenColorIO-Configs-Natron-v2.4 OpenColorIO-Configs
```

***note:*** In order to reclaim disk space, you may keep only the following subfolder : blender*, natron, nuke-default
Expand Down
4 changes: 2 additions & 2 deletions INSTALL_MACOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,11 +319,11 @@ git submodule update -i --recursive
### Download OpenColorIO-Configs
In the past, OCIO configs were a submodule, though due to the size of the repository, we have chosen instead
to make a tarball release and let you download it [here](https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.3.tar.gz).
to make a tarball release and let you download it [here](https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.4.tar.gz).
Place it at the root of Natron source tree:
```Shell
curl -k -L https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.3.tar.gz | tar zxf -
curl -k -L https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.4.tar.gz | tar zxf -
mv OpenColorIO-Configs-Natron-v2.1 OpenColorIO-Configs
```
Expand Down
4 changes: 2 additions & 2 deletions OpenColorIO-Configs-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ As mentionned in the INSTALL files, the default OpenColorIO
configuration files must be downloaded and unpacked at the root of the
Natron source tree, using something like:

curl -k -L https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.3.tar.gz | tar zxf -
mv OpenColorIO-Configs-Natron-v2.3 OpenColorIO-Configs
curl -k -L https://github.com/NatronGitHub/OpenColorIO-Configs/archive/Natron-v2.4.tar.gz | tar zxf -
mv OpenColorIO-Configs-Natron-v2.4 OpenColorIO-Configs
4 changes: 2 additions & 2 deletions tools/travis/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then
fi
# - openimageio
if [ ! -d "$HOME/oiio/lib" ]; then
wget https://github.com/OpenImageIO/oiio/archive/Release-2.2.12.0.tar.gz -O /tmp/oiio.tgz;
wget https://github.com/OpenImageIO/oiio/archive/Release-2.2.15.1.tar.gz -O /tmp/oiio.tgz;
tar -xvzf /tmp/oiio.tgz -C $HOME;
pushd $HOME/oiio-Release-2.2.12.0;
pushd $HOME/oiio-Release-2.2.15.1;
mkdir _build && cd _build;
cmake -DCMAKE_INSTALL_PREFIX=$HOME/oiio -DILMBASE_ROOT_DIR=$HOME/openexr -DOPENEXR_ROOT_DIR=$HOME/openexr -DOCIO_HOME=$HOME/ocio -DUSE_QT=OFF -DUSE_PYTHON=OFF -DUSE_PYTHON3=OFF -DUSE_FIELD3D=OFF -DUSE_FFMPEG=OFF -DUSE_OPENJPEG=ON -DUSE_OCIO=ON -DUSE_OPENCV=OFF -DUSE_OPENSSL=OFF -DUSE_FREETYPE=ON -DUSE_GIF=OFF -DUSE_PTEX=OFF -DUSE_LIBRAW=ON -DOIIO_BUILD_TESTS=OFF -DOIIO_BUILD_TOOLS=OFF -DSTOP_ON_WARNING=OFF ..;
make $J && make install;
Expand Down

0 comments on commit 7e9644a

Please sign in to comment.