diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2016-11-24 16:47:10 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2016-11-24 16:47:32 -0300 |
commit | ff95233244fa5b85fc6e98b074e74ac47b89d3b1 (patch) | |
tree | 355a39452caef729e9c0c336eccaade171f6b114 /libre/blender | |
parent | be791de45260b5af78c24dbb870bbb97e4fb2e78 (diff) | |
download | abslibre-ff95233244fa5b85fc6e98b074e74ac47b89d3b1.tar.gz abslibre-ff95233244fa5b85fc6e98b074e74ac47b89d3b1.tar.bz2 abslibre-ff95233244fa5b85fc6e98b074e74ac47b89d3b1.zip |
blender: fix pkgbuild
Diffstat (limited to 'libre/blender')
-rw-r--r-- | libre/blender/PKGBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libre/blender/PKGBUILD b/libre/blender/PKGBUILD index 1300b755a..01376c8b9 100644 --- a/libre/blender/PKGBUILD +++ b/libre/blender/PKGBUILD @@ -35,9 +35,9 @@ pkgbase='blender' pkgname=("${pkgbase}" "${pkgbase}-addon-gimp" "${pkgbase}-addon-povray") # pkgver: -if [[ "${_git}" = 'yes' ]] then +if [[ "${_git}" = 'yes' ]]; then pkgver="${_gittagver}.${_gitrev}.${_gitcommit::7}" # Git Commit -elif [[ "${_git}" = 'no' ]] then +elif [[ "${_git}" = 'no' ]]; then [[ -z "${_gittagrev}" ]] && \ pkgver="${_gittagver}" # Official Release [[ "${#_gittagrev}" > 1 ]] && \ @@ -63,7 +63,7 @@ makedepends=('boost' 'cmake' 'git' 'llvm35' 'mesa') options=('!strip') # source: -if [[ "${_git}" = 'no' ]] then +if [[ "${_git}" = 'no' ]]; then source=( # Blender "${pkgbase}-${pkgver}::git://git.${pkgbase}.org/${pkgbase}.git#tag=v${_gittagver}${_gittagrev}" @@ -74,7 +74,7 @@ if [[ "${_git}" = 'no' ]] then # Blender Devel Tools "${pkgbase}-dev-tools-${pkgver}::git://git.${pkgbase}.org/${pkgbase}-dev-tools.git#tag=v${_gitdevtagver}" ) -elif [[ "${_git}" = 'yes' ]] then +elif [[ "${_git}" = 'yes' ]]; then source=( # Blender "${pkgbase}-${pkgver}::git://git.${pkgbase}.org/${pkgbase}.git#commit=${_gitcommit}" |