graphics/findimagedupes: Updated for version 2.19.

Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
B. Watson 2019-12-01 01:15:56 -05:00 committed by Willy Sudiarto Raharjo
parent b62bf95ab2
commit 1aadd5feae
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 10 additions and 9 deletions

View file

@ -7,7 +7,7 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
PRGNAM=findimagedupes
VERSION=${VERSION:-2.18}
VERSION=${VERSION:-2.19}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
@ -20,12 +20,13 @@ OUTPUT=${OUTPUT:-/tmp}
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PKG $TMP/$PRGNAM
mkdir -p $TMP/$PRGNAM $PKG $OUTPUT
cd $TMP/$PRGNAM
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
# 2.18 has an enclosing dir in the tarball, 2.19 doesn't, this worx with both:
[ -d $PRGNAM-$VERSION ] && cd $PRGNAM-$VERSION
chown -R root:root .
chmod 644 *
@ -41,7 +42,7 @@ pod2man -s1 --stderr -cSlackBuilds.org -r$VERSION $PRGNAM | \
gzip -9c > $PKG/usr/man/man1/$PRGNAM.1.gz
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README COPYING history $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README* COPYING history $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View file

@ -1,8 +1,8 @@
PRGNAM="findimagedupes"
VERSION="2.18"
VERSION="2.19"
HOMEPAGE="http://www.jhnc.org/findimagedupes/"
DOWNLOAD="http://www.jhnc.org/findimagedupes/findimagedupes-2.18.tar.gz"
MD5SUM="5c353c6e4611e194114d4192c32c6adb"
DOWNLOAD="http://www.jhnc.org/findimagedupes/findimagedupes-2.19.tar.gz"
MD5SUM="24886738644e77cb20d78f56f7178ef8"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="perl-Inline-C perl-file-mimeinfo GraphicsMagick"