mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
community/openimageio to 1.8.17-3
This commit is contained in:
parent
f81863e62f
commit
cdb30f80d0
1 changed files with 9 additions and 11 deletions
|
@ -6,35 +6,33 @@
|
|||
|
||||
pkgname=openimageio
|
||||
pkgver=1.8.17
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="A library for reading and writing images, including classes, utilities, and applications"
|
||||
arch=(x86_64)
|
||||
url="http://www.openimageio.org/"
|
||||
license=('custom')
|
||||
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'
|
||||
'python2: bindings support')
|
||||
'python: bindings support')
|
||||
source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
|
||||
md5sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd oiio
|
||||
prepare() {
|
||||
mkdir oiio/build
|
||||
}
|
||||
|
||||
[[ -d build ]] && rm -r build
|
||||
mkdir build && cd build
|
||||
build() {
|
||||
cd oiio/build
|
||||
|
||||
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS="-latomic $LDFLAGS"
|
||||
|
||||
# Python is currently broken :(
|
||||
cmake .. \
|
||||
-DUSE_PYTHON=ON \
|
||||
-DUSE_PYTHON3=ON \
|
||||
-DUSE_OPENSSL=ON \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_INSTALL_LIBDIR=lib \
|
||||
-DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
|
||||
-DPYLIB3_INSTALL_DIR=lib/python3.6/site-packages \
|
||||
-DPYLIB3_INSTALL_DIR=lib/python3.7/site-packages \
|
||||
-DOIIO_BUILD_TESTS=ON \
|
||||
-DOIIO_BUILD_TOOLS=ON \
|
||||
-DSTOP_ON_WARNING=OFF
|
||||
|
|
Loading…
Reference in a new issue