34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
# Description: Fully integrated 3D graphics creation suite
|
|
# URL: http://www.blender.org/
|
|
# Maintainer: Jose V Beneyto, sepen at users dot sourceforge dot net
|
|
# Packager: Jose V Beneyto, sepen at users dot sourceforge dot net
|
|
# Depends on: libjpeg libpng ode fmod smpeg ftgl scons openexr freealut
|
|
|
|
name=blender
|
|
version=2.45
|
|
release=2
|
|
source=(http://download.blender.org/source/${name}-${version}.tar.gz)
|
|
|
|
build() {
|
|
cd ${name}-${version}
|
|
sed -i -e "s/-O2/${CFLAGS// /\' ,\'}/g" SConstruct
|
|
scons \
|
|
WITH_BF_OPENAL=yes \
|
|
WITH_BF_FMOD=yes \
|
|
WITH_BF_OPENEXR=yes \
|
|
WITH_BF_FFMPEG=yes \
|
|
WITH_BF_JPEG=yes \
|
|
WITH_BF_PNG=yes \
|
|
WITH_BF_ZLIB=yes \
|
|
WITH_BF_INTERNATIONAL=yes \
|
|
WITH_BF_GAMEENGINE=yes \
|
|
WITH_BF_ODE=yes \
|
|
WITH_BF_FTGL=yes \
|
|
BF_FTGL_INC=/usr/include/FTGL \
|
|
BF_FTGL_LIB=/usr/lib \
|
|
WITH_BF_PLAYER=yes \
|
|
BF_DEBUG=no
|
|
install -D -m 0755 $SRC/install/linux2/$name $PKG/usr/bin/$name
|
|
install -D -m 0755 $SRC/install/linux2/${name}player $PKG/usr/bin/${name}player
|
|
}
|