diff --git a/Changes b/Changes index fbb5e6a114..fbeef446c6 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,8 @@ +1.6.0 +----- + +- LibRaw : Added version 0.19.5. + 1.5.0 ----- diff --git a/LibRaw/config.py b/LibRaw/config.py new file mode 100644 index 0000000000..4ba530e4bd --- /dev/null +++ b/LibRaw/config.py @@ -0,0 +1,28 @@ +{ + + "downloads" : [ + + "https://www.libraw.org/data/LibRaw-0.19.5.tar.gz", + + ], + + "url" : "https://www.libraw.org/", + + "license" : "LICENSE.LGPL", + + "commands" : [ + + "./configure --disable-examples --prefix={buildDir}", + "make -j {jobs}", + "make install" + + ], + + "manifest" : [ + + "include/libraw", + "lib/libraw*{sharedLibraryExtension}*", + + ], + +} diff --git a/OpenImageIO/config.py b/OpenImageIO/config.py index b1874a7a4a..caf24c8048 100644 --- a/OpenImageIO/config.py +++ b/OpenImageIO/config.py @@ -10,7 +10,7 @@ "license" : "LICENSE", - "dependencies" : [ "Boost", "Python", "IlmBase", "OpenEXR", "LibTIFF", "LibPNG", "LibJPEG-Turbo", "OpenColorIO" ], + "dependencies" : [ "Boost", "Python", "IlmBase", "OpenEXR", "LibTIFF", "LibPNG", "LibJPEG-Turbo", "OpenColorIO", "LibRaw" ], "commands" : [ diff --git a/build.py b/build.py index 2e5f12ec01..5fe7081e17 100755 --- a/build.py +++ b/build.py @@ -15,7 +15,7 @@ import tarfile import zipfile -__version = "1.5.0" +__version = "1.6.0" def __projects() :