summaryrefslogtreecommitdiffstats
path: root/graphics/ufraw/ufraw.SlackBuild
diff options
context:
space:
mode:
author Nishant Limbachia <nishant@mnspace.net>2015-09-30 08:25:41 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-10-01 20:09:42 +0700
commitccacaac11688407224af7ffff3ad3a4c0d6d7977 (patch)
treead72982c2d11d30d97796fda0cfe773eb34f26e3 /graphics/ufraw/ufraw.SlackBuild
parent86e1517905580062caef4b2e737bc34151be0ea2 (diff)
downloadslackbuilds-ccacaac11688407224af7ffff3ad3a4c0d6d7977.tar.gz
slackbuilds-ccacaac11688407224af7ffff3ad3a4c0d6d7977.tar.xz
graphics/ufraw: Updated for version 0.22.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics/ufraw/ufraw.SlackBuild')
-rw-r--r--graphics/ufraw/ufraw.SlackBuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/ufraw/ufraw.SlackBuild b/graphics/ufraw/ufraw.SlackBuild
index 4f89bcbb51..6a77d6f771 100644
--- a/graphics/ufraw/ufraw.SlackBuild
+++ b/graphics/ufraw/ufraw.SlackBuild
@@ -26,7 +26,7 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM="ufraw"
-VERSION=${VERSION:-0.21}
+VERSION=${VERSION:-0.22}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -86,6 +86,9 @@ CXXFLAGS="$SLKCFLAGS" \
--localstatedir=/var \
--mandir=/usr/man \
--enable-mime \
+ --enable-extras \
+ --enable-dst-correction \
+ --enable-contrast \
--build=$ARCH-slackware-linux \
$gtk_option
@@ -95,6 +98,9 @@ make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+# remove dcraw executable - we have a separate package in SBo which provides this.
+rm -f $PKG/usr/bin/dcraw
+
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $(find $PKG/usr/man -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done