PKGBUILDs/community/blender/PKGBUILD

96 lines
3.5 KiB
Bash
Raw Normal View History

2021-12-04 21:35:49 +00:00
# Maintainer: Sven-Hendrik Haase <svenstaro@archlinux.org>
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
2022-01-26 17:03:38 +00:00
pkgver=3.0.1
2022-02-05 21:24:39 +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')
2021-04-16 15:43:40 +00:00
url="https://www.blender.org"
2020-12-02 19:20:43 +00:00
depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 'python-requests' 'potrace'
2020-04-23 12:32:02 +00:00
'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg2' 'python-numpy'
2020-11-21 21:57:26 +00:00
'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 'alembic' 'openxr'
2021-06-05 22:07:16 +00:00
'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
2021-10-31 01:51:58 +00:00
'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 'sdl2' 'libharu')
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)
2021-04-16 15:43:40 +00:00
source=("git+https://git.blender.org/blender.git#tag=v$pkgver"
"git+https://git.blender.org/blender-addons.git"
"git+https://git.blender.org/blender-addons-contrib.git"
"git+https://git.blender.org/blender-translations.git"
"git+https://git.blender.org/blender-dev-tools.git"
2021-04-28 14:09:43 +00:00
blender-openexr3.patch)
sha512sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
2020-09-04 20:49:07 +00:00
'SKIP'
2021-04-28 14:09:43 +00:00
'e2dd7210d26b70445e9ae8e33dea35111ad0b0aca9d3b4ded3df560d0fcc8dc044868f729e0f090a04b6f316f083b5505a7056ce088e8702065add87b9b457e5')
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}
2021-04-28 14:09:43 +00:00
patch -p1 < "$srcdir"/blender-openexr3.patch # Fix build with OpenEXR 3
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
2021-12-12 23:43:31 +00:00
local PYTHON_VER=3.10
2020-12-21 15:28:16 +00:00
2021-12-04 21:35:49 +00:00
# Optix is disabled until NVIDIA makes a new set of Optix headers publically available.
# That means we'll have to wait on NVIDIA for the time being.
2021-10-11 05:22:26 +00:00
cmake \
2020-07-27 04:18:17 +00:00
-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 \
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 \
2020-12-21 15:28:16 +00:00
-DPYTHON_VERSION=$PYTHON_VER \
2018-05-24 01:16:00 +00:00
-DPYTHON_LIBPATH=/usr/lib \
2020-12-21 15:28:16 +00:00
-DPYTHON_LIBRARY=python$PYTHON_VER \
-DPYTHON_INCLUDE_DIRS=/usr/include/python$PYTHON_VER \
-DCMAKE_CXX_FLAGS="-I /usr/include/python$PYTHON_VER"
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"
2021-01-26 23:25:25 +00:00
# Manually install additional scripts (See FS#69351)
2021-12-04 21:35:49 +00:00
cp -r release/scripts/addons_contrib/* "${pkgdir}"/usr/share/blender/3*/scripts/addons_contrib/
2018-05-24 01:16:00 +00:00
}