summaryrefslogtreecommitdiff
path: root/artistic/luxrender-nocl/PKGBUILD
blob: 9daa7a54841ad02c1537192395e94f6b2f97bb23 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
# Initial contributor: flixie <69one@gmx.net>
# Contributor: Imanol Celaya <ornitorrincos@archlinux-es.org>
# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com>
pkgname=luxrender-nocl
pkgver=1.0rc4
_pkgver=0b4c3e188707
pkgrel=1
pkgdesc='Rendering system for physically correct, unbiased image synthesis (without OpenCL)'
arch=(
  i686
  x86_64
  mips64el
)
url=http://www.${pkgname%-nocl}.net/
license=(
  GPL
)
depends=(
  boost-libs
  freeimage
  openexr
)
optdepends=(
  'luxblend25: Blender exporter'
  'python: Python interface (pylux)'
  'qt: Qt GUI'
)
makedepends=(
  cmake
  boost
  qt
  ${pkgname::3}rays-nocl=$pkgver
  python
)
conflicts=(
  ${pkgname%-nocl}
)
provides=(
  ${pkgname%-nocl}=$pkgver
)
source=(
  https://bitbucket.org/${pkgname%-nocl}/${pkgname::3}/get/$_pkgver.tar.bz2
  boost_1.50_fix.diff
)
md5sums=(
  54ff625a7833541c3cff5f0a77a93863
  8c7774bb0c97aadd77d9e665d8fa4aab
)

build() {
  cd $srcdir/${pkgname%-nocl}-${pkgname::3}-$_pkgver

  # fix for boost 1.50
  # the boost::TIME_UTC has been renamed due to the conflict with C++11
  patch -Np1 < $srcdir/boost_1.50_fix.diff || true

  export CXXFLAGS='$CXXFLAGS -lpthread'
  cmake -DCMAKE_INSTALL_PREFIX=/usr \
    -DLUXRAYS_DISABLE_OPENCL=ON \
    -DPYTHON_CUSTOM=ON \
    -DPYTHON_LIBRARIES=/usr/lib/libpython3.2mu.so \
    -DPYTHON_INCLUDE_PATH=/usr/include/python3.2mu \
    .
  make
}

package() {
  cd $srcdir/${pkgname%-nocl}-${pkgname::3}-$_pkgver
  make DESTDIR=$pkgdir install

  # fix library path on x86_64
  [ $CARCH = x86_64 ] && mv $pkgdir/usr/lib64 $pkgdir/usr/lib

  #install pylux
  install -D -m644 pylux.so $pkgdir/usr/lib/python3.2/pylux.so
}