diff options
author | Barry J. Grundy <bgrundyatlinuxleo.com> | 2017-03-29 20:25:43 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-01 06:57:02 +0700 |
commit | 7d6aa2d75b81ad051bdee93551e44381979968f6 (patch) | |
tree | 27169366086381e3ae81ad516114155970bcd42d /system | |
parent | eda4b5082987a84dbe050d844a5ddab5ed1e20cf (diff) | |
download | slackbuilds-7d6aa2d75b81ad051bdee93551e44381979968f6.tar.gz |
system/bulk_extractor: Updated for version 1.5.5.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/bulk_extractor/README | 11 | ||||
-rw-r--r-- | system/bulk_extractor/bulk_extractor.SlackBuild | 6 |
2 files changed, 10 insertions, 7 deletions
diff --git a/system/bulk_extractor/README b/system/bulk_extractor/README index 5540024c1e..3679062b4b 100644 --- a/system/bulk_extractor/README +++ b/system/bulk_extractor/README @@ -1,8 +1,8 @@ bulk_extractor is a C++ program that scans a disk image, a file, or a directory -of files and extracts useful information without parsing the file system or -file system structures. The results are stored in feature files that can be -easily inspected, parsed, or processed with automated tools. bulk_extractor -also creates histograms of features that it finds, as features that are more +of files and extracts useful information without parsing the file system or +file system structures. The results are stored in feature files that can be +easily inspected, parsed, or processed with automated tools. bulk_extractor +also creates histograms of features that it finds, as features that are more common tend to be more important. bulk_extractor is distinguished from other forensic tools by its speed and @@ -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. diff --git a/system/bulk_extractor/bulk_extractor.SlackBuild b/system/bulk_extractor/bulk_extractor.SlackBuild index 903aa717aa..2a7e955d4f 100644 --- a/system/bulk_extractor/bulk_extractor.SlackBuild +++ b/system/bulk_extractor/bulk_extractor.SlackBuild @@ -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" |