2013-05-21 20:28:53 +00:00
|
|
|
# Contributor: SpepS <dreamspepser at yahoo dot it>
|
|
|
|
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2017-06-03 01:30:37 +00:00
|
|
|
# - removed intel-tbb from deps
|
|
|
|
# - patch to explicitly link against libatomic for v5/v6
|
2013-05-21 20:28:53 +00:00
|
|
|
|
|
|
|
pkgname=openimageio
|
2018-09-06 23:41:42 +00:00
|
|
|
pkgver=1.8.14
|
2018-09-21 19:04:01 +00:00
|
|
|
pkgrel=2
|
2013-05-21 20:28:53 +00:00
|
|
|
pkgdesc="A library for reading and writing images, including classes, utilities, and applications"
|
2018-01-06 20:59:28 +00:00
|
|
|
arch=(x86_64)
|
2013-05-21 20:28:53 +00:00
|
|
|
url="http://www.openimageio.org/"
|
|
|
|
license=('custom')
|
2017-04-11 00:04:35 +00:00
|
|
|
depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 'openssl' 'libpng')
|
2018-07-07 17:50:29 +00:00
|
|
|
makedepends=('cmake' 'qt5-base' 'python2' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
|
|
|
|
optdepends=('qt5-base: iv image viewer'
|
2013-05-21 20:28:53 +00:00
|
|
|
'python2: bindings support')
|
2017-06-03 01:30:37 +00:00
|
|
|
source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver}
|
|
|
|
atomic.patch)
|
|
|
|
md5sums=('SKIP'
|
2018-03-30 00:32:56 +00:00
|
|
|
'a495ba4917d4a100dab54738c092e029')
|
2017-06-03 01:30:37 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd oiio
|
|
|
|
|
|
|
|
if [[ $CARCH == arm || $CARCH == armv6h ]]; then
|
|
|
|
patch -p1 -i ../atomic.patch
|
|
|
|
fi
|
|
|
|
}
|
2014-11-08 06:59:01 +00:00
|
|
|
|
2013-05-21 20:28:53 +00:00
|
|
|
build() {
|
2014-05-15 04:24:05 +00:00
|
|
|
cd oiio
|
2013-05-21 20:28:53 +00:00
|
|
|
|
|
|
|
[[ -d build ]] && rm -r build
|
|
|
|
mkdir build && cd build
|
|
|
|
|
2015-12-23 18:56:35 +00:00
|
|
|
# Python is currently broken :(
|
|
|
|
cmake .. \
|
2017-01-16 02:32:48 +00:00
|
|
|
-DUSE_PYTHON=ON \
|
|
|
|
-DUSE_PYTHON3=ON \
|
2015-12-23 18:56:35 +00:00
|
|
|
-DUSE_OPENSSL=ON \
|
2013-05-21 20:28:53 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2018-03-29 14:35:27 +00:00
|
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
2013-05-21 20:28:53 +00:00
|
|
|
-DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
|
2017-04-11 00:04:35 +00:00
|
|
|
-DPYLIB3_INSTALL_DIR=lib/python3.6/site-packages \
|
2015-12-23 18:56:35 +00:00
|
|
|
-DOIIO_BUILD_TESTS=ON \
|
|
|
|
-DOIIO_BUILD_TOOLS=ON \
|
2017-06-03 01:30:37 +00:00
|
|
|
-DSTOP_ON_WARNING=OFF
|
2013-05-21 20:28:53 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2014-05-15 04:24:05 +00:00
|
|
|
cd oiio/build
|
2013-05-21 20:28:53 +00:00
|
|
|
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
|
|
|
|
# license
|
2014-01-12 21:00:19 +00:00
|
|
|
cd ..
|
2013-05-21 20:28:53 +00:00
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
|
|
}
|