system/md5deep: Updated for version 4.4 + new maintainer.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2015-05-17 10:18:53 +07:00
parent 6441b70c77
commit a5ef8182e0
2 changed files with 21 additions and 18 deletions

View file

@ -2,7 +2,8 @@
# Slackware build script for md5deep
# Copyright 2009-2010 Erik W. Hanson, Minneapolis, MN, USA
# Copyright 2009-2015 Erik W. Hanson, Minneapolis, MN, USA
# Copyright 2015 Willy Sudiarto Raharjo <willysr@slackbuilds.org>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +24,8 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=md5deep
VERSION=3.6
SRCNAM=hashdeep
VERSION=${VERSION:-4.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -59,17 +61,19 @@ set -eu
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
rm -rf $SRCNAM-release-$VERSION
tar xvf $CWD/$SRCNAM-release-$VERSION.tar.gz || tar xvf $CWD/release-$VERSION.tar.gz
cd $SRCNAM-release-$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 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
chmod +x bootstrap.sh
CFLAGS="$SLKCFLAGS" \
./bootstrap.sh
./configure \
--prefix=/usr \
--mandir=/usr/man \
@ -79,15 +83,14 @@ CFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
# Manually strip, thanks to Oleg O. Chukaev.
find $PKG | xargs file | grep -e "executable" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
gzip -9 $PKG/usr/man/man?/*
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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
$PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS TODO $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View file

@ -1,10 +1,10 @@
PRGNAM="md5deep"
VERSION="3.6"
HOMEPAGE="http://md5deep.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/md5deep/md5deep-3.6.tar.gz"
MD5SUM="1042f66125537a9da7442c741c9e0f4e"
VERSION="4.4"
HOMEPAGE="https://github.com/jessek/hashdeep/"
DOWNLOAD="https://github.com/jessek/hashdeep/archive/release-4.4.tar.gz"
MD5SUM="9ccfd5ba3e3d9cffddeb118cacad0c27"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Erik Hanson"
EMAIL="erik@slackbuilds.org"
MAINTAINER="Willy Sudiarto Raharjo"
EMAIL="willysr@slackbuilds.org"