mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
graphics/blender: Version bump to 4.1.1 + new maintainer
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
48f141a1c6
commit
7364a03812
3 changed files with 22 additions and 13 deletions
|
@ -1,6 +1,8 @@
|
|||
Blender is the free open source 3D content creation suite, available
|
||||
for all major operating systems under the GNU General Public License.
|
||||
|
||||
This version repackages the binary bundle,
|
||||
for which only a 64bit version is available from upstream.
|
||||
If you wish to build from source look for 'graphics/Blender' on SBo.
|
||||
NOTE: This is a repackaging of upstream's binary bundle. They only
|
||||
provide 64bit bundles, so 32bit is unsupported without compiling it
|
||||
yourself, which is available on SBo under:
|
||||
|
||||
'graphics/Blender' (note the big "B")
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Slackware build script for Blender
|
||||
# Ryan P.C. McQuen | Everett, WA | ryanpcmcquen@member.fsf.org
|
||||
# 2017 - Dhaby Xiloj <slack.dhabyx@gmail.com>
|
||||
|
||||
# Copyright 2008-2013 Robby Workman Northport, AL, USA
|
||||
# Copyright 2014-2017 Ryan P.C. McQuen | Everett, WA | ryanpcmcquen@member.fsf.org
|
||||
# Copyright 2017 Dhaby Xiloj <slack.dhabyx@gmail.com>
|
||||
# Copyright 2024 Jeremy Hansen <jebrhansen+SBo@gmail.com>
|
||||
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -35,12 +37,12 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=blender
|
||||
VERSION=${VERSION:-2.90.1}
|
||||
BUILD=${BUILD:-2}
|
||||
VERSION=${VERSION:-4.1.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
SRCVERSION=${VERSION}-linux64
|
||||
SRCVERSION=${VERSION}-linux-x64
|
||||
|
||||
# We'll remove the libGL* shared libaries that are shipped with blender (and
|
||||
# instead use the ones that are shipped with Slackware's Xorg)
|
||||
|
@ -115,6 +117,11 @@ mkdir -p $PKG/usr/share/icons/hicolor/scalable/apps
|
|||
ln -s ../../../../../../opt/blender/blender.svg \
|
||||
$PKG/usr/share/icons/hicolor/scalable/apps/
|
||||
|
||||
# Correct permissions for executables/libraries
|
||||
find $PKG/opt/blender/${VERSION%.*}/python/lib -name *.so -exec chmod +x {} +
|
||||
find $PKG/opt/blender/lib -name *.so* -exec chmod +x {} +
|
||||
chmod +x $PKG/opt/blender/${VERSION%.*}/scripts/addons/cycles/lib/kernel_*.cubin
|
||||
|
||||
# Add a desktop menu entry
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
cat $CWD/blender.desktop > $PKG/usr/share/applications/blender.desktop
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="blender"
|
||||
VERSION="2.90.1"
|
||||
VERSION="4.1.1"
|
||||
HOMEPAGE="http://blender.org"
|
||||
DOWNLOAD="UNSUPPORTED"
|
||||
MD5SUM=""
|
||||
DOWNLOAD_x86_64="https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.90/blender-2.90.1-linux64.tar.xz"
|
||||
MD5SUM_x86_64="38c75023edf4c11aff79459a82808a62"
|
||||
DOWNLOAD_x86_64="https://ftp.nluug.nl/pub/graphics/blender/release/Blender4.1/blender-4.1.1-linux-x64.tar.xz"
|
||||
MD5SUM_x86_64="9162a33b58c88180d17cd1051559b520"
|
||||
REQUIRES=""
|
||||
MAINTAINER="DhabyX"
|
||||
EMAIL="slack.dhabyx@gmail.com"
|
||||
MAINTAINER="Jeremy Hansen"
|
||||
EMAIL="jebrhansen+SBo@gmail.com"
|
||||
|
|
Loading…
Reference in a new issue