summaryrefslogtreecommitdiff
path: root/community/openimageio/PKGBUILD
blob: 63285dd4b4f57674c9df7122bd52a4609db28761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Contributor: SpepS <dreamspepser at yahoo dot it>
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>

_pkg=OpenImageIO
pkgname=openimageio
pkgver=0.10.4
pkgrel=1
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')
makedepends=('cmake' 'qt' 'python2' 'boost')
optdepends=('qt: iv image viewer' 'python2: bindings support')
source=("https://github.com/$_pkg/oiio/tarball/Release-${pkgver/_/-}")
md5sums=('08a1bc2b82862ad5547bba569f4f633f')

build() {
  cd "$srcdir"/$_pkg*

  # remove insecure rpath
  sed -i "/RPATH/d" src/CMakeLists.txt

  make
}

package() {
  cd "$srcdir"/$_pkg*/dist/*

  # prepare dirs
  install -d "$pkgdir"/usr/{share/doc/$_pkg,lib/python2.7/site-packages}

  # bin
  cp -r bin include lib "$pkgdir/usr"

  # docs
  cp -r doc/* "$pkgdir/usr/share/doc/$_pkg"

  # python module
  cp -r python/* "$pkgdir/usr/lib/python2.7/site-packages"

  # license
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}