PKGBUILDs/community/blender/PKGBUILD

93 lines
3.6 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
2020-09-01 03:59:00 +00:00
# - set -DWITH_CYCLES_EMBREE=OFF
2018-05-24 01:16:00 +00:00
buildarch=8
2018-05-24 01:16:00 +00:00
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.
2018-05-24 01:16:00 +00:00
pkgname=blender
2020-09-23 12:51:11 +00:00
pkgver=2.90.1
2020-10-02 16:54:54 +00:00
pkgrel=2
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)
2020-09-04 20:49:07 +00:00
source=("git://git.blender.org/blender.git#tag=v$pkgver"
"git://git.blender.org/blender-addons.git"
2018-05-24 01:16:00 +00:00
"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-09-01 01:09:07 +00:00
https://git.blender.org/gitweb/gitweb.cgi/blender.git/patch/91aeb452ab251b307311fe869e8e14df945ec6bc
cuda11.patch
2020-01-16 13:52:30 +00:00
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip)
sha512sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
2020-09-04 20:49:07 +00:00
'SKIP'
2020-09-01 01:09:07 +00:00
'46358fe7dab620eb9a7414baa851e7d28818b7c2845f723f7dd0f4b0f721902583a6b57c9c2d5e153c5057cc958727489d301c5195dfd3befee96cde539d813a'
'76d55f49cf0475d3050a3ff534da47345aae862fd5ee0e336143c041ef58c5d4ebd6e922eb8a23c01cc35d19537c46698910b0b52a090cdcea4e5f67e4fb5650'
2020-09-04 20:49:07 +00:00
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491')
2018-05-24 01:16:00 +00:00
prepare() {
2020-09-04 20:49:07 +00:00
cd "$pkgname"
2018-05-24 01:16:00 +00:00
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-09-04 20:49:07 +00:00
git submodule foreach git checkout v${pkgver}
2018-05-24 01:16:00 +00:00
2020-09-01 01:09:07 +00:00
patch -Np1 -i "$srcdir"/91aeb452ab251b307311fe869e8e14df945ec6bc
patch -Np1 -i "$srcdir"/cuda11.patch
2018-05-24 01:16:00 +00:00
}
build() {
2020-09-04 20:49:07 +00:00
cd "$pkgname"
2018-05-24 01:16:00 +00:00
2020-07-27 04:18:17 +00:00
cmake . \
-Bbuild \
2019-11-24 03:51:54 +00:00
-GNinja \
2020-07-27 04:18:17 +00:00
-Cbuild_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 \
2020-09-01 03:59:00 +00:00
-DWITH_CYCLES_EMBREE=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
2020-07-27 04:18:17 +00:00
ninja -C build
2018-05-24 01:16:00 +00:00
}
package() {
2020-09-04 20:49:07 +00:00
cd "$pkgname"
2018-05-24 01:16:00 +00:00
2020-07-27 04:18:17 +00:00
DESTDIR="${pkgdir}" ninja -C build install
install -Dm755 release/bin/blender-softwaregl "${pkgdir}/usr/bin/blender-softwaregl"
2018-05-24 01:16:00 +00:00
python -m compileall "${pkgdir}/usr/share/blender"
python -O -m compileall "${pkgdir}/usr/share/blender"
2020-06-02 13:55:40 +00:00
2020-07-27 04:18:17 +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
}