diff options
author | David Spencer <baildon.research@googlemail.com> | 2014-01-26 22:06:36 +0100 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-01-29 23:20:28 -0600 |
commit | fa8f34de382f52c2d4b0f91b14b2932f363c0027 (patch) | |
tree | 88a967de3a0d4092eb91bca808ec69734621201a /graphics/darktable/darktable.SlackBuild | |
parent | 0626899492da0017e85968364fef912297d26e7a (diff) | |
download | slackbuilds-fa8f34de382f52c2d4b0f91b14b2932f363c0027.tar.gz |
graphics/darktable: Updated for version 1.4.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'graphics/darktable/darktable.SlackBuild')
-rw-r--r-- | graphics/darktable/darktable.SlackBuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/graphics/darktable/darktable.SlackBuild b/graphics/darktable/darktable.SlackBuild index d33ebe8b0e..1da0463ffe 100644 --- a/graphics/darktable/darktable.SlackBuild +++ b/graphics/darktable/darktable.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=darktable -VERSION=${VERSION:-1.2.3} +VERSION=${VERSION:-1.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -63,13 +63,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.xz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# Yet another package that doesn't honour lib64: -patch -p1 < $CWD/darktable-0.9.x_libpaths.patch + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; mkdir -p build cd build @@ -79,6 +76,7 @@ cd build -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_SUFFIX=${LIBDIRSUFFIX} \ -DMAN_INSTALL_DIR=/usr/man \ + -DDONT_USE_INTERNAL_LUA=Off \ -DBINARY_PACKAGE_BUILD=1 \ -DCMAKE_BUILD_TYPE=Release .. VERBOSE=1 make |