Making openimageio use parallel building.

This commit is contained in:
Lluís Batlle i Rossell 2015-08-12 10:16:12 +02:00
parent e5fd500733
commit ff31b14cc5

View File

@ -20,11 +20,13 @@ stdenv.mkDerivation rec {
"-DUSE_PYTHON=OFF"
];
buildPhase = ''
make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 \
INSTALLDIR=$out dist_dir=
preBuild = ''
makeFlags="ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0
INSTALLDIR=$out dist_dir="
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://www.openimageio.org;
description = "A library and tools for reading and writing images";