PKGBUILDs/community/openimageio/PKGBUILD

53 lines
1.5 KiB
Bash
Raw Normal View History

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>
2018-09-22 18:05:12 +00:00
# - link against libatomic for v5/v6
2013-05-21 20:28:53 +00:00
pkgname=openimageio
2018-10-10 19:09:48 +00:00
pkgver=1.8.15
pkgrel=1
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')
2018-09-22 18:05:12 +00:00
depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 'intel-tbb' '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')
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
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
2018-09-22 18:05:12 +00:00
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS="-latomic $LDFLAGS"
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"
}