# Maintainer: Sven-Hendrik Haase # Contributor: John Sowiak # Contributor: tobias # 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. pkgname=blender pkgver=2.91.0 pkgrel=2 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' 'openjpeg2' 'python-numpy' 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 'alembic' 'openxr' 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 'openimagedenoise' 'jemalloc' 'libspnav' 'ptex' 'potrace' 'opensubdiv' 'openvdb' 'log4cplus' 'sdl2' 'embree') makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja') optdepends=('cuda: cycles renderer cuda support') options=(!strip) source=("git://git.blender.org/blender.git#tag=v$pkgver" "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" https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip) sha512sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491') prepare() { cd "$pkgname" 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 submodule update git submodule foreach git checkout v${pkgver} } build() { cd "$pkgname" cmake . \ -Bbuild \ -GNinja \ -Cbuild_files/cmake/config/blender_release.cmake \ -DOPTIX_ROOT_DIR="$srcdir"/include \ -DWITH_CYCLES_EMBREE=ON \ -DWITH_POTRACE=ON \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DWITH_INSTALL_PORTABLE=OFF \ -DWITH_PYTHON_INSTALL=OFF \ -DPYTHON_VERSION=3.9 \ -DPYTHON_LIBPATH=/usr/lib \ -DPYTHON_LIBRARY=python3.9 \ -DPYTHON_INCLUDE_DIRS=/usr/include/python3.9 ninja -C build } package() { cd "$pkgname" DESTDIR="${pkgdir}" ninja -C build 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" install -Dm644 release/freedesktop/org.blender.Blender.appdata.xml "${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml" }