diff options
Diffstat (limited to 'repo/openexr/openexr.xibuild')
-rw-r--r-- | repo/openexr/openexr.xibuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/repo/openexr/openexr.xibuild b/repo/openexr/openexr.xibuild new file mode 100644 index 0000000..94647c1 --- /dev/null +++ b/repo/openexr/openexr.xibuild @@ -0,0 +1,28 @@ +#!/bin/sh + +NAME="openexr" +DESC="A high dynamic-range image file format library" + +MAKEDEPS="boost chrpath cmake ninja zlib" + +PKG_VER=3.1.5 +SOURCE="https://github.com/openexr/openexr/archive/v$PKG_VER.tar.gz" + +ADDITIONAL=" +fix-x86.patch +" + +build() { + cmake -B build -G Ninja \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DBUILD_SHARED_LIBS=True \ + -DCMAKE_BUILD_TYPE=None \ + $CMAKE_CROSSOPTS + cmake --build build +} + +package() { + DESTDIR="$PKG_DEST" cmake --install build +} + |