PKGBUILDs/community/blender/PKGBUILD

108 lines
4.1 KiB
Bash
Raw Normal View History

2019-11-24 03:51:54 +00:00
# Maintainer: Sven-Hendrik Haase <svenstaro@gmail.com>
2018-05-24 01:16:00 +00:00
# Contributor: John Sowiak <john@archlinux.org>
# Contributor: tobias <tobias@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - remove makedepend, optdepend on cuda
2020-03-14 12:24:12 +00:00
# - remove depend on openimagedenoise, embree
# - set -DWITH_CYCLES=OFF, -DWITH_RAYOPTIMIZATION=OFF
2018-05-24 01:16:00 +00:00
buildarch=8
2018-05-24 01:16:00 +00:00
# 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.
2020-01-16 13:52:30 +00:00
# For legal reasons, we can't separately package the Optix headers so we'll
# just build the package against them. I checked with NVIDIA and this way is
# fine with them.
2020-06-03 23:53:01 +00:00
_gittag=v2.83
2019-07-13 21:50:38 +00:00
# _gitcommit=054dbb833e15275e0e991e2c15e754a3e7583716
2018-05-24 01:16:00 +00:00
pkgname=blender
2020-06-03 23:53:01 +00:00
pkgver=2.83
2019-07-13 21:50:38 +00:00
[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit:0:8}
2020-06-03 23:53:01 +00:00
pkgrel=1
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'
2020-04-23 12:32:02 +00:00
'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg2' 'python-numpy'
2018-05-24 01:16:00 +00:00
'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 'alembic'
'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 'sdl2')
2019-07-13 21:50:38 +00:00
makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'ninja')
2018-05-24 01:16:00 +00:00
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"
2020-01-16 13:52:30 +00:00
"git://git.blender.org/blender-dev-tools.git"
2020-03-14 12:24:12 +00:00
embree.patch
2020-01-16 13:52:30 +00:00
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip)
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
sha512sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
2020-03-14 12:24:12 +00:00
'6de779ad8649a034ee65c45a36d7838ac0b8b32c3336b4d476186265c060f56276e3e0a2860ec4bff42bef7d5582ee82238013845f6a697672767a05a455aaca'
2020-01-16 13:52:30 +00:00
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
'SKIP')
2018-05-24 01:16:00 +00:00
prepare() {
cd "$srcdir/$pkgname-$pkgver"
git submodule init
2019-12-03 14:50:00 +00:00
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"
2018-05-24 01:16:00 +00:00
git submodule update
2020-03-14 12:24:12 +00:00
patch -Np1 -i "$srcdir"/embree.patch
mkdir build
2018-05-24 01:16:00 +00:00
}
build() {
cd "$srcdir/$pkgname-$pkgver"/build
2018-05-24 01:16:00 +00:00
2019-11-24 03:51:54 +00:00
cmake \
-GNinja \
-C../build_files/cmake/config/blender_release.cmake .. \
2020-01-16 13:52:30 +00:00
-DOPTIX_ROOT_DIR="$srcdir"/include \
2018-05-24 01:16:00 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DWITH_INSTALL_PORTABLE=OFF \
-DWITH_PYTHON_INSTALL=OFF \
-DWITH_CYCLES=OFF \
-DWITH_RAYOPTIMIZATION=OFF \
2019-11-14 13:55:59 +00:00
-DPYTHON_VERSION=3.8 \
2018-05-24 01:16:00 +00:00
-DPYTHON_LIBPATH=/usr/lib \
2019-11-14 13:55:59 +00:00
-DPYTHON_LIBRARY=python3.8 \
-DPYTHON_INCLUDE_DIRS=/usr/include/python3.8
2018-05-24 01:16:00 +00:00
2019-07-13 21:50:38 +00:00
ninja
2018-05-24 01:16:00 +00:00
}
package() {
cd "$srcdir/$pkgname-$pkgver/build"
2019-07-13 21:50:38 +00:00
DESTDIR="${pkgdir}" ninja install
2018-05-24 01:16:00 +00:00
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"
2020-06-02 13:55:40 +00:00
install -Dm644 ../release/freedesktop/org.blender.Blender.appdata.xml "${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
2018-05-24 01:16:00 +00:00
}