2018-05-24 01:16:00 +00:00
|
|
|
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
|
|
|
|
# Contributor: John Sowiak <john@archlinux.org>
|
|
|
|
# Contributor: tobias <tobias@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - remove makedepend, optdepend on cuda
|
2018-12-25 21:54:49 +00:00
|
|
|
# - set -DWITH_CYCLES=OFF, -DWITH_RAYOPTIMIZATION=OFF
|
2018-05-24 01:16:00 +00:00
|
|
|
|
|
|
|
buildarch=12
|
|
|
|
|
|
|
|
# Sometimes blender.org takes some time to release patch releases and because Arch users
|
|
|
|
# are impatient, we sometimes need to build from git directly.
|
|
|
|
# Update because I get so many queries on this:
|
|
|
|
# Due to our other rolling deps, it's sometimes not possible to build Blender stable releases.
|
|
|
|
# More often than not, a new openshadinglanguage breaks it and I could either backport fixes
|
|
|
|
# or simply roll with a new version. I usually choose the latter when the former seems
|
|
|
|
# unreasonable.
|
|
|
|
|
|
|
|
# _gittag=v2.79b
|
2018-12-25 21:54:49 +00:00
|
|
|
_gitcommit=2c0c1f494dcfadb3c01d23e2348e28bc8864e9f3
|
2018-05-24 01:16:00 +00:00
|
|
|
|
|
|
|
pkgname=blender
|
|
|
|
pkgver=2.79.b
|
2018-12-25 21:54:49 +00:00
|
|
|
[[ -n $_gitcommit ]] && pkgver=${pkgver}.git4.${_gitcommit:0:8}
|
2019-01-16 20:36:52 +00:00
|
|
|
pkgrel=3
|
2018-05-24 01:16:00 +00:00
|
|
|
epoch=17
|
|
|
|
pkgdesc="A fully integrated 3D graphics creation suite"
|
|
|
|
arch=('x86_64')
|
|
|
|
license=('GPL')
|
|
|
|
url="http://www.blender.org"
|
|
|
|
depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 'python-requests'
|
|
|
|
'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' 'python-numpy'
|
|
|
|
'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 'alembic'
|
|
|
|
'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
|
|
|
|
'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 'sdl2')
|
|
|
|
makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm')
|
|
|
|
options=(!strip)
|
|
|
|
source=("git://git.blender.org/blender-addons.git"
|
|
|
|
"git://git.blender.org/blender-addons-contrib.git"
|
|
|
|
"git://git.blender.org/blender-translations.git"
|
|
|
|
"git://git.blender.org/blender-dev-tools.git"
|
2018-06-09 13:46:19 +00:00
|
|
|
"git://git.blender.org/scons.git"
|
2018-10-19 00:27:02 +00:00
|
|
|
stl_export_iter.patch
|
2018-12-25 21:54:49 +00:00
|
|
|
python3.7.patch)
|
2018-05-24 01:16:00 +00:00
|
|
|
if [[ -n $_gittag ]]; then
|
|
|
|
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
|
|
|
|
elif [[ -n $_gitcommit ]]; then
|
|
|
|
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
|
|
|
|
fi
|
2018-10-19 00:27:02 +00:00
|
|
|
sha512sums=('SKIP'
|
|
|
|
'SKIP'
|
|
|
|
'SKIP'
|
|
|
|
'SKIP'
|
|
|
|
'SKIP'
|
|
|
|
'51f30acc407179f003d1dbec25fb47b0bf1fe8d2eb16e069a6ca83ab8b21f6032d636a42e0b140537ad1ad25ad38c52a87a2a33e51822729ab196fcef4682818'
|
2018-12-25 21:54:49 +00:00
|
|
|
'f5564e8db242f6fa9cd951590f4c6de8f5b1a8bbd73aeb6e837a840dd2696e71f7b6bb1c94f9c2377b199159f87a95bead8ee113c01e8763f3843918395cc177'
|
2018-10-19 00:27:02 +00:00
|
|
|
'SKIP')
|
2018-05-24 01:16:00 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
|
|
|
|
git submodule init
|
|
|
|
git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
|
|
|
|
git config submodule."release/scripts/addons_contrib".url ${srcdir}/blender-addons-contrib
|
|
|
|
git config submodule."release/datafiles/locale".url ${srcdir}/blender-translations
|
|
|
|
git config submodule."source/tools".url ${srcdir}/blender-dev-tools
|
|
|
|
git config submodule."scons".url ${srcdir}/scons
|
|
|
|
git submodule update
|
|
|
|
|
2018-10-07 22:09:28 +00:00
|
|
|
patch -Np1 -i "$srcdir"/stl_export_iter.patch
|
2018-12-25 21:54:49 +00:00
|
|
|
patch -Np1 -i "$srcdir"/python3.7.patch -d release/scripts/addons_contrib
|
|
|
|
|
|
|
|
mkdir build
|
2018-05-24 01:16:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-12-25 21:54:49 +00:00
|
|
|
cd "$srcdir/$pkgname-$pkgver"/build
|
2018-05-24 01:16:00 +00:00
|
|
|
|
|
|
|
cmake -C../build_files/cmake/config/blender_release.cmake .. \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DWITH_INSTALL_PORTABLE=OFF \
|
|
|
|
-DWITH_PYTHON_INSTALL=OFF \
|
|
|
|
-DOPENIMAGEIO_ROOT_DIR=/usr \
|
|
|
|
-DWITH_SYSTEM_OPENJPEG=ON \
|
|
|
|
-DWITH_GL_PROFILE_CORE=OFF \
|
|
|
|
-DWITH_GL_PROFILE_ES20=OFF \
|
|
|
|
-DWITH_LLVM=ON \
|
|
|
|
-DWITH_CYCLES_PTEX=OFF \
|
2018-12-25 21:54:49 +00:00
|
|
|
-DWITH_OPENVDB_3_ABI_COMPATIBLE=ON \
|
2018-05-24 01:16:00 +00:00
|
|
|
-DWITH_CYCLES=OFF \
|
|
|
|
-DWITH_RAYOPTIMIZATION=OFF \
|
2018-08-06 13:04:54 +00:00
|
|
|
-DPYTHON_VERSION=3.7 \
|
2018-05-24 01:16:00 +00:00
|
|
|
-DPYTHON_LIBPATH=/usr/lib \
|
2018-08-06 13:04:54 +00:00
|
|
|
-DPYTHON_LIBRARY=python3.7m \
|
|
|
|
-DPYTHON_INCLUDE_DIRS=/usr/include/python3.7m
|
2018-05-24 01:16:00 +00:00
|
|
|
make
|
|
|
|
|
|
|
|
# PTEX is currently broken and experimental in blender anyway
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver/build"
|
|
|
|
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -Dm755 ../release/bin/blender-softwaregl "${pkgdir}/usr/bin/blender-softwaregl"
|
|
|
|
python -m compileall "${pkgdir}/usr/share/blender"
|
|
|
|
python -O -m compileall "${pkgdir}/usr/share/blender"
|
|
|
|
}
|