md5deep: Update to 3.0

This commit is contained in:
Brett Goulder 2008-05-16 03:41:15 -04:00
parent fc0661ed64
commit 5610ae4474
3 changed files with 9 additions and 7 deletions

View File

@ -1,5 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/hashdeep
-rwxr-xr-x root/root usr/bin/md5deep
-rwxr-xr-x root/root usr/bin/sha1deep
-rwxr-xr-x root/root usr/bin/sha256deep
@ -7,6 +8,7 @@ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/whirlpooldeep
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/hashdeep.1.gz
-rw-r--r-- root/root usr/man/man1/md5deep.1.gz
-rw-r--r-- root/root usr/man/man1/sha1deep.1.gz
-rw-r--r-- root/root usr/man/man1/sha256deep.1.gz

View File

@ -1 +1 @@
c250d966ff3bf6594a16410b63429af1 md5deep-2.0.1-001.tar.gz
f491729d91632a816a7a4a8dba58b3ca md5deep-3.0.tar.gz

View File

@ -4,14 +4,14 @@
# Maintainer: Brett Goulder, predatorfreak at dcaf-security dot org.
name=md5deep
version=2.0.1
version=3.0
release=1
source=(http://dl.sourceforge.net/${name}/${name}-${version}-001.tar.gz)
source=(http://dl.sourceforge.net/${name}/${name}-${version}.tar.gz)
build() {
cd ${SRC}/$name-$version-001
./configure --prefix=/usr
make || return 1
# make BIN=${PKG}/usr/bin MAN=${PKG}/usr/man/man/man1 install
cd ${SRC}/$name-$version
./configure --prefix=/usr \
--mandir=/usr/man
make
make DESTDIR=$PKG install
}