PKGBUILDs/community/openimageio/PKGBUILD

62 lines
1.6 KiB
Bash
Raw Normal View History

2015-12-23 18:56:35 +00:00
# $Id$
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
2017-04-11 00:04:35 +00:00
pkgver=1.7.13
2017-05-29 17:30:58 +00:00
pkgrel=3
2013-05-21 20:28:53 +00:00
pkgdesc="A library for reading and writing images, including classes, utilities, and applications"
arch=(i686 x86_64)
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')
makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
2013-05-21 20:28:53 +00:00
optdepends=('qt4: iv image viewer'
'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'
'883358fbfb7d156f92de3368adbdc488')
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 \
-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"
}