blob: 1fc1a7f919c333456e21ce968285fcef0140db21 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
# $Id$
# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com>
pkgname=blender-libre
pkgver=2.64a
pkgrel=2
pkgaev=5
pkgdesc='A fully integrated 3D graphics creation suite, without nonfree cuda-toolkit and redcode image format support'
arch=(
i686
x86_64
mips64el
)
license=(
GPL
)
url=http://www.${pkgname%-libre}.org
depends=(
# rbd tree #
ffmpeg
fftw
freetype2
jack
libpng
libtiff
openal
openimageio
opencolorio
# bed #
opencollada
# ded #
desktop-file-utils
hicolor-icon-theme
shared-mime-info
xdg-utils
# cbd tree #
#alsa-lib
#boost-libs
#bzip2
#celt
#dbus-core
#flac
#gcc-libs
#glew
#glibc
#glu
#gsm
#icu
#ilmbase
#json-c
#lame
#libasyncns
#libdrm
#libgl
#libglapi
#libice
#libjpeg-turbo
#libogg
#libpulse
#libsndfile
#libsm
#libtheora
#libva
#libvorbis
#libvpx
#libx11
#libxau
#libxcb
#libxdamage
#libxdmcp
#libxext
#libxfixes
#libxi
#libxml2
#libxmu
#libxt
#libxxf86vm
#ocr
#openexr
#opencore-amr
#openjpeg
#openssl
#pcre
#python
#rtmpdump
#sdl-libre
#schroedinger
#speex
#util-linux
#x264
#xvidcore
#xz
#v4l-utils
#zlib
)
optdepends=(
'bullet: for Physics Simulation in BGE'
)
makedepends=(
# rmd tree #
mesa
boost
cmake
subversion
)
replaces=(
${pkgname%-libre}
)
conflicts=(
${pkgname%-libre}
)
provides=(
${pkgname%-libre}=$pkgaev:$pkgver
)
install=$pkgname.install
source=(
http://download.${pkgname%-libre}.org/source/${pkgname%-libre}-$pkgver.tar.gz
)
sha512sums=(
77d171a36f1c87a82613ed7601df9cef444069a2a6600e05260607e9a2009c292068a2b4753f3cbd53d820cdc8d9ed88ddd1685f20647b943f75bfbeb905b9b5
)
build() {
cd "$srcdir/${pkgname%-libre}-$pkgver"
mkdir build
cd build
[[ $CARCH == i686 ]] && DSUPPORT_SSE2_BUILD='-DSUPPORT_SSE2_BUILD=OFF'
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DPYTHON_INCLUDE_DIRS=/usr/include/python3.3m \
-DPYTHON_LIBPATH=/usr/lib \
-DPYTHON_LIBRARY=python3.3m \
-DPYTHON_VERSION=3.3 \
$DSUPPORT_SSE2_BUILD \
-DWITH_CODEC_FFMPEG=ON \
-DWITH_CODEC_SNDFILE=ON \
-DWITH_CYCLES=ON \
-DWITH_CYCLES_CUDA_BINARIES=OFF \
-DWITH_FFTW3=ON \
-DWITH_GAMEENGINE=ON \
-DWITH_IMAGE_REDCODE=OFF \
-DWITH_INSTALL_PORTABLE=OFF \
-DWITH_JACK=ON \
-DWITH_MOD_OCEANSIM=ON \
-DWITH_OPENCOLLADA=ON \
-DWITH_PLAYER=ON \
-DWITH_PYTHON_INSTALL=OFF \
-DWITH_SYSTEM_GLEW=ON
make $MAKEFLAGS
make
}
package() {
cd $srcdir/${pkgname%-libre}-$pkgver/build
make DESTDIR=$pkgdir install
python -m compileall $pkgdir/usr/share/blender
}
|