2019-10-06 15:45:05 +00:00
|
|
|
# Maintainer: Sven-Hendrik Haase <svenstaro@gmail.com>
|
2013-05-21 20:28:53 +00:00
|
|
|
# Contributor: SpepS <dreamspepser at yahoo dot it>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2018-09-22 18:05:12 +00:00
|
|
|
# - link against libatomic for v5/v6
|
2013-05-21 20:28:53 +00:00
|
|
|
|
|
|
|
pkgname=openimageio
|
2020-02-28 19:25:02 +00:00
|
|
|
pkgver=2.1.11.2
|
2020-03-02 19:44:52 +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')
|
2020-03-02 19:44:52 +00:00
|
|
|
depends=('openexr' 'boost-libs' 'openjpeg' 'glew' 'libtiff' 'opencolorio' 'intel-tbb' 'openssl' 'libpng' 'libraw' 'libwebp')
|
2019-03-18 18:07:12 +00:00
|
|
|
makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
|
2018-07-07 17:50:29 +00:00
|
|
|
optdepends=('qt5-base: iv image viewer'
|
2019-03-18 18:07:12 +00:00
|
|
|
'python: bindings support')
|
2018-09-22 18:05:12 +00:00
|
|
|
source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
|
|
|
|
md5sums=('SKIP')
|
2014-11-08 06:59:01 +00:00
|
|
|
|
2019-03-18 18:07:12 +00:00
|
|
|
prepare() {
|
|
|
|
mkdir oiio/build
|
|
|
|
}
|
2013-05-21 20:28:53 +00:00
|
|
|
|
2019-03-18 18:07:12 +00:00
|
|
|
build() {
|
|
|
|
cd oiio/build
|
2013-05-21 20:28:53 +00:00
|
|
|
|
2018-09-22 18:05:12 +00:00
|
|
|
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS="-latomic $LDFLAGS"
|
|
|
|
|
2015-12-23 18:56:35 +00:00
|
|
|
cmake .. \
|
2019-03-19 18:34:42 +00:00
|
|
|
-DUSE_PYTHON=ON \
|
2019-11-14 14:01:35 +00:00
|
|
|
-DPYTHON_VERSION=3.8 \
|
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 \
|
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
|
|
|
|
|
2019-07-13 21:51:48 +00:00
|
|
|
install -Dm644 ../LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE".md
|
2013-05-21 20:28:53 +00:00
|
|
|
}
|