community/openimageio to 1.8.17-3

This commit is contained in:
Kevin Mihelich 2019-03-18 18:07:12 +00:00
parent f81863e62f
commit cdb30f80d0

View file

@ -6,35 +6,33 @@
pkgname=openimageio
pkgver=1.8.17
pkgrel=2
pkgrel=3
pkgdesc="A library for reading and writing images, including classes, utilities, and applications"
arch=(x86_64)
url="http://www.openimageio.org/"
license=('custom')
depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 'intel-tbb' 'openssl' 'libpng')
makedepends=('cmake' 'qt5-base' 'python2' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
optdepends=('qt5-base: iv image viewer'
'python2: bindings support')
'python: bindings support')
source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
md5sums=('SKIP')
build() {
cd oiio
prepare() {
mkdir oiio/build
}
[[ -d build ]] && rm -r build
mkdir build && cd build
build() {
cd oiio/build
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS="-latomic $LDFLAGS"
# Python is currently broken :(
cmake .. \
-DUSE_PYTHON=ON \
-DUSE_PYTHON3=ON \
-DUSE_OPENSSL=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
-DPYLIB3_INSTALL_DIR=lib/python3.6/site-packages \
-DPYLIB3_INSTALL_DIR=lib/python3.7/site-packages \
-DOIIO_BUILD_TESTS=ON \
-DOIIO_BUILD_TOOLS=ON \
-DSTOP_ON_WARNING=OFF