PKGBUILDs/community/openimageio/PKGBUILD

47 lines
1.2 KiB
Bash
Raw Normal View History

2013-05-21 20:28:53 +00:00
# $Id: PKGBUILD 90071 2013-05-06 19:38:49Z foutrelis $
# 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, set -DUSE_TBB=0
pkgname=openimageio
2014-05-15 04:24:05 +00:00
pkgver=1.4.5.git
2013-08-30 23:20:14 +00:00
pkgrel=1
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')
depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio')
2014-05-15 04:24:05 +00:00
makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa' 'git')
2013-05-21 20:28:53 +00:00
optdepends=('qt4: iv image viewer'
'python2: bindings support')
2014-05-15 04:24:05 +00:00
source=(git+git://github.com/OpenImageIO/oiio.git#commit=0e4a24bb)
md5sums=('SKIP')
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
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DPYLIB_INSTALL_DIR=lib/python2.7/site-packages \
-DUSE_EXTERNAL_TBB=ON \
2013-07-13 14:40:22 +00:00
-DOIIO_BUILD_TESTS=OFF \
2013-05-21 20:28:53 +00:00
-DUSE_TBB=0 \
..
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"
}