mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
62 lines
1.6 KiB
Bash
62 lines
1.6 KiB
Bash
# $Id$
|
|
# Contributor: SpepS <dreamspepser at yahoo dot it>
|
|
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - removed intel-tbb from deps
|
|
# - patch to explicitly link against libatomic for v5/v6
|
|
|
|
pkgname=openimageio
|
|
pkgver=1.8.14
|
|
pkgrel=1
|
|
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' 'openssl' 'libpng')
|
|
makedepends=('cmake' 'qt5-base' 'python2' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
|
|
optdepends=('qt5-base: iv image viewer'
|
|
'python2: bindings support')
|
|
source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver}
|
|
atomic.patch)
|
|
md5sums=('SKIP'
|
|
'a495ba4917d4a100dab54738c092e029')
|
|
|
|
prepare() {
|
|
cd oiio
|
|
|
|
if [[ $CARCH == arm || $CARCH == armv6h ]]; then
|
|
patch -p1 -i ../atomic.patch
|
|
fi
|
|
}
|
|
|
|
build() {
|
|
cd oiio
|
|
|
|
[[ -d build ]] && rm -r build
|
|
mkdir build && cd build
|
|
|
|
# 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 \
|
|
-DOIIO_BUILD_TESTS=ON \
|
|
-DOIIO_BUILD_TOOLS=ON \
|
|
-DSTOP_ON_WARNING=OFF
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd oiio/build
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# license
|
|
cd ..
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|