homebrew-core/Formula/sleuthkit.rb
2018-10-18 03:20:38 +08:00

41 lines
1.2 KiB
Ruby

class Sleuthkit < Formula
desc "Forensic toolkit"
homepage "https://www.sleuthkit.org/"
url "https://github.com/sleuthkit/sleuthkit/releases/download/sleuthkit-4.6.3/sleuthkit-4.6.3.tar.gz"
sha256 "d38af0da39969fea1baea6eaf37e1fe8b1de830783f08a044157f82e095ed4e4"
bottle do
cellar :any
sha256 "51b30c280b302dd9d7ccc27778abf71d02a32d9b4095254737a8b278e45c8cd3" => :mojave
sha256 "8ecc20e35a77e102b6ed5d45ad8dd707887d0bf47737323a5758205fd6d90ed4" => :high_sierra
sha256 "ce8de5ba1d0be98895c2265a6927a93b1a99156e483517370c7ac42e2e457370" => :sierra
end
depends_on "ant" => :build
depends_on "afflib"
depends_on :java
depends_on "libewf"
depends_on "libpq"
depends_on "sqlite"
conflicts_with "irods", :because => "both install `ils`"
conflicts_with "ffind",
:because => "both install a 'ffind' executable."
def install
ENV.append_to_cflags "-DNDEBUG"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make", "install"
cd "bindings/java" do
system "ant"
end
prefix.install "bindings"
end
test do
system "#{bin}/tsk_loaddb", "-V"
end
end