diff options
author | Alan Alberghini <414N@slacky.it> | 2010-12-11 22:29:59 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-12-11 22:29:59 -0600 |
commit | def12bf7c6198c0d9bfe4961be5c2644aa42142a (patch) | |
tree | cf293e9424f1ae0bfa11c688a04a5752010dd126 /graphics/yafaray | |
parent | ba5f7d9180aaf0cc3795fdb37ef19b2d81a3e6b4 (diff) | |
download | slackbuilds-def12bf7c6198c0d9bfe4961be5c2644aa42142a.tar.gz |
graphics/yafaray: Minor tweak to remove bash-specific syntax
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'graphics/yafaray')
-rw-r--r-- | graphics/yafaray/yafaray.SlackBuild | 7 | ||||
-rw-r--r-- | graphics/yafaray/yafaray.info | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/graphics/yafaray/yafaray.SlackBuild b/graphics/yafaray/yafaray.SlackBuild index 9fc6e956a8..f30efa5035 100644 --- a/graphics/yafaray/yafaray.SlackBuild +++ b/graphics/yafaray/yafaray.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for yafaray -# Copyright (c) 2009 Alan Alberghini <414N@slacky.it> +# Copyright (c) 2010 Alan Alberghini <414N@slacky.it> # All rights reserved. # # Permission to use, copy, modify, and distribute this software for @@ -26,7 +26,8 @@ # # Build history: # -# 1 - Initial release. +# 1.0 - Initial release. +# 1.1 - Removed a bashism (==) to become ash-compatible. PRGNAM=yafaray VERSION=${VERSION:-0.1.1} @@ -100,7 +101,7 @@ fi # a different YF_PACKPATH doesn't seem to work fine, so we have to manually # copy the files from the temporary debian build path to $PKG in the end. -if [ ${BUILDPYTHON} == no ]; then +if [ ${BUILDPYTHON} = no ]; then scons debian $QTTARGET PREFIX=/usr \ YF_LIBOUT=/usr/lib${LIBDIRSUFFIX} \ YF_PLUGINPATH=/usr/lib${LIBDIRSUFFIX}/yafaray \ diff --git a/graphics/yafaray/yafaray.info b/graphics/yafaray/yafaray.info index 6aedae5aca..7700161b82 100644 --- a/graphics/yafaray/yafaray.info +++ b/graphics/yafaray/yafaray.info @@ -7,4 +7,4 @@ DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Alan Alberghini" EMAIL="414N@slacky.it" -APPROVED="dsomero" +APPROVED="dsomero,rworkman" |