Skip to content

Commit

Permalink
Merge pull request #159 from johnhaddon/libRawBackport
Browse files Browse the repository at this point in the history
Version 1.6.0 with LibRaw support
  • Loading branch information
johnhaddon authored Jul 13, 2020
2 parents 90d0ef0 + 075fa12 commit ae8456d
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.6.0
-----

- LibRaw : Added version 0.19.5.

1.5.0
-----

Expand Down
28 changes: 28 additions & 0 deletions LibRaw/config.py
Original file line number Diff line number Diff line change
@@ -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}*",

],

}
2 changes: 1 addition & 1 deletion OpenImageIO/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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" : [

Expand Down
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import tarfile
import zipfile

__version = "1.5.0"
__version = "1.6.0"

def __projects() :

Expand Down

0 comments on commit ae8456d

Please sign in to comment.