mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
system/bulk_extractor: Updated for version 1.5.5.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
9aa99bb377
commit
dc69e50439
2 changed files with 10 additions and 7 deletions
|
@ -18,3 +18,6 @@ To add optional liblightgrep support:
|
|||
NOTE:
|
||||
When running bulk_extractor with lightgrep, use
|
||||
"-x find -e lightgrep -F findlist.txt" in addition to regular options.
|
||||
|
||||
If you want to use the java based GUI (BEViewer), you will also need to have
|
||||
java installed. This has been tested with JDK.
|
||||
|
|
|
@ -33,7 +33,7 @@ LIGHTGREP_ENABLE=${LIGHTGREP_ENABLE:-no}
|
|||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -44,8 +44,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
|
Loading…
Reference in a new issue