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