homebrew-core/Formula/autopsy.rb

94 lines
2.9 KiB
Ruby

class Autopsy < Formula
desc "Graphical interface to Sleuth Kit investigation tools"
homepage "https://www.sleuthkit.org/autopsy/index.php"
url "https://downloads.sourceforge.net/project/autopsy/autopsy/2.24/autopsy-2.24.tar.gz"
sha256 "ab787f519942783d43a561d12be0554587f11f22bc55ab79d34d8da703edc09e"
livecheck do
url "https://github.com/sleuthkit/autopsy.git"
strategy :github_latest
regex(%r{href=.*?/tag/autopsy[._-]v?(\d+(?:\.\d+)+)["' >]}i)
end
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "778ab6721c38acce97a7e7bbe7e4c941ecb9c8f6a684581e26d2b24684308046"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "778ab6721c38acce97a7e7bbe7e4c941ecb9c8f6a684581e26d2b24684308046"
sha256 cellar: :any_skip_relocation, monterey: "cec5acab1fcc5e79f07962e85ed00af7696fb5db6d7e1bce164d8f21bf3b614d"
sha256 cellar: :any_skip_relocation, big_sur: "cec5acab1fcc5e79f07962e85ed00af7696fb5db6d7e1bce164d8f21bf3b614d"
sha256 cellar: :any_skip_relocation, catalina: "cec5acab1fcc5e79f07962e85ed00af7696fb5db6d7e1bce164d8f21bf3b614d"
sha256 cellar: :any_skip_relocation, mojave: "cec5acab1fcc5e79f07962e85ed00af7696fb5db6d7e1bce164d8f21bf3b614d"
end
depends_on "sleuthkit"
# fixes weird configure script that wouldn't work nicely with homebrew
patch :DATA
def autcfg
<<~EOS
# Autopsy configuration settings
# when set to 1, the server will stop after it receives no
# connections for STIMEOUT seconds.
$USE_STIMEOUT = 0;
$STIMEOUT = 3600;
# number of seconds that child waits for input from client
$CTIMEOUT = 15;
# set to 1 to save the cookie value in a file (for scripting)
$SAVE_COOKIE = 1;
$INSTALLDIR = '#{prefix}';
# System Utilities
$GREP_EXE = '/usr/bin/grep';
$FILE_EXE = '/usr/bin/file';
$MD5_EXE = '/sbin/md5';
$SHA1_EXE = '/usr/bin/shasum';
# Directories
$TSKDIR = '/usr/local/bin/';
# Homebrew users can install NSRL database and change this variable later
$NSRLDB = '';
# Evidence locker location
$LOCKDIR = '#{var}/lib/autopsy';
EOS
end
def install
(var+"lib/autopsy").mkpath
mv "lib", "libexec"
prefix.install %w[global.css help libexec pict]
prefix.install Dir["*.txt"]
(prefix+"conf.pl").write autcfg
inreplace "base/autopsy.base", "/tmp/autopsy", prefix
inreplace "base/autopsy.base", "lib/define.pl", "#{libexec}/define.pl"
bin.install "base/autopsy.base" => "autopsy"
end
def caveats
<<~EOS
By default, the evidence locker is in:
#{var}/lib/autopsy
EOS
end
end
__END__
diff --git a/base/autopsy.base b/base/autopsy.base
index 3b3bbdc..a0d2632 100644
--- a/base/autopsy.base
+++ b/base/autopsy.base
@@ -1,3 +1,6 @@
+#!/usr/bin/perl -wT
+use lib '/tmp/autopsy/';
+use lib '/tmp/autopsy/libexec/';
#
# autopsy gui server
# Autopsy Forensic Browser