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
|
2022-12-09 14:22:46 +00:00
|
|
|
# - remove depend on openimagedenoise, embree, openpgl
|
2020-09-01 03:59:00 +00:00
|
|
|
# - set -DWITH_CYCLES_EMBREE=OFF
|
2023-03-09 19:02:56 +00:00
|
|
|
# - remove makedepend on hip-runtime-amd
|
|
|
|
# - removed Intel OneAPI support
|
2018-05-24 01:16:00 +00:00
|
|
|
|
2019-12-16 20:23:26 +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
|
2023-06-27 14:38:25 +00:00
|
|
|
pkgver=3.6.0
|
2023-07-17 22:58:17 +00:00
|
|
|
pkgrel=4
|
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'
|
2022-03-13 04:17:32 +00:00
|
|
|
'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 'alembic' 'openxr'
|
2021-06-05 22:07:16 +00:00
|
|
|
'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
|
2023-05-06 01:25:50 +00:00
|
|
|
'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'sdl2' 'libharu'
|
2023-06-12 19:06:18 +00:00
|
|
|
'draco' 'libxkbcommon' 'libepoxy')
|
|
|
|
makedepends=('cmake' 'boost' 'mesa' 'git' 'svn' 'llvm' 'ninja' 'wayland-protocols'
|
2023-02-18 16:16:52 +00:00
|
|
|
'libxkbcommon' 'libdecor')
|
2022-12-09 01:54:57 +00:00
|
|
|
optdepends=('libdecor: wayland support')
|
2023-03-12 17:58:34 +00:00
|
|
|
# We're using !buildflags here as otherwise we get stuff such as FS#77557
|
|
|
|
# It'd be better to figure out exactly which of the flags is the culprit which I attempted but without any success.
|
|
|
|
options=('!buildflags')
|
2023-03-09 19:02:56 +00:00
|
|
|
source=("git+https://projects.blender.org/blender/blender.git#tag=v$pkgver"
|
|
|
|
https://developer.download.nvidia.com/redist/optix/v7.6/OptiX-7.6-Include.zip
|
2022-02-17 19:28:54 +00:00
|
|
|
force-draco1.patch
|
|
|
|
force-draco2.patch)
|
2018-10-19 00:27:02 +00:00
|
|
|
sha512sums=('SKIP'
|
2023-03-09 19:02:56 +00:00
|
|
|
'dfe86de395dd298fb9feae73bff06a26742efa06a25bb5a4f78ffb1ba4c78f555d1af927efea98af281715cce01db219aa2adfd6bd323bf0d766c1c70ce03532'
|
2022-02-17 19:28:54 +00:00
|
|
|
'e239da4f3906f1b54265435181cf770bae3d269c8d915df9a73861e6ee71ec70bf2339426e7c81a91e5a567273b3b3742d7a99feefd3398d821b26e1ff3a56d0'
|
2023-03-09 19:02:56 +00:00
|
|
|
'c162646eba42ea7112cfb615466c2cbaddac8d254d4a9e91cf887c5bffef1325a983701163223a1fdee091310ac5574a400347aab7f52321825b5fa3d5a9036f')
|
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
|
|
|
|
2023-03-30 04:23:47 +00:00
|
|
|
make update
|
2023-01-22 20:27:21 +00:00
|
|
|
|
2023-03-09 19:02:56 +00:00
|
|
|
# fix draco
|
2022-02-17 19:28:54 +00:00
|
|
|
patch -p1 -i "$srcdir"/force-draco1.patch
|
2023-03-30 04:23:47 +00:00
|
|
|
patch -p1 -d scripts/addons -i "$srcdir"/force-draco2.patch
|
2018-05-24 01:16:00 +00:00
|
|
|
}
|
|
|
|
|
2022-11-06 02:00:12 +00:00
|
|
|
get_pyver() {
|
|
|
|
python -c 'import sys; print(str(sys.version_info[0]) + "." + str(sys.version_info[1]))'
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2022-11-06 02:00:12 +00:00
|
|
|
local PYTHON_VER="$(get_pyver)"
|
|
|
|
|
|
|
|
# CUDA arch 90 is unsupported
|
|
|
|
echo 'set(CYCLES_CUDA_BINARIES_ARCH sm_52 sm_53 sm_60 sm_61 sm_62 sm_70 sm_72 sm_75 sm_80 sm_86 sm_87 sm_89 compute_89 CACHE STRING "CUDA architectures to build binaries for" FORCE)' > precache
|
|
|
|
echo 'mark_as_advanced(CYCLES_CUDA_BINARIES_ARCH)' >> precache
|
2020-12-21 15:28:16 +00:00
|
|
|
|
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 \
|
2022-11-06 02:00:12 +00:00
|
|
|
-C precache \
|
2023-04-17 12:47:01 +00:00
|
|
|
-DPYTHON_VERSION=$PYTHON_VER \
|
2022-09-10 05:08:53 +00:00
|
|
|
-DOPTIX_ROOT_DIR="$srcdir" \
|
2018-05-24 01:16:00 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DWITH_INSTALL_PORTABLE=OFF \
|
|
|
|
-DWITH_PYTHON_INSTALL=OFF \
|
2023-02-02 03:02:53 +00:00
|
|
|
-DWITH_CYCLES_EMBREE=OFF
|
2022-09-10 05:08:53 +00:00
|
|
|
cmake --build 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
|
|
|
|
2022-09-10 05:08:53 +00:00
|
|
|
DESTDIR="${pkgdir}" cmake --install build
|
2020-07-27 04:18:17 +00:00
|
|
|
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)
|
2023-03-30 04:23:47 +00:00
|
|
|
cp -r scripts/addons_contrib/* "${pkgdir}"/usr/share/blender/3*/scripts/addons_contrib/
|
2022-02-17 19:28:54 +00:00
|
|
|
|
|
|
|
# Manually install draco bindings (See FS#73415)
|
2022-11-06 02:00:12 +00:00
|
|
|
mkdir -p "${pkgdir}/usr/lib/python$(get_pyver)"/
|
2022-02-17 19:28:54 +00:00
|
|
|
mv "${pkgdir}"/usr/share/blender/3*/python/lib/* "${pkgdir}"/usr/lib/
|
|
|
|
rm -r "${pkgdir}"/usr/share/blender/3*/python
|
2018-05-24 01:16:00 +00:00
|
|
|
}
|