blob: 3b0f266c2f4c5fb00fa58246238a9c06f5e54eb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  | 
require 'formula'
class Sleuthkit < Formula
  homepage 'http://www.sleuthkit.org/'
  url 'http://downloads.sourceforge.net/project/sleuthkit/sleuthkit/4.0.2/sleuthkit-4.0.2.tar.gz'
  sha1 'e5394d53eb07615e6e78ff7fa73340cc6f6e98d4'
  head 'https://github.com/sleuthkit/sleuthkit.git'
  if build.head?
    depends_on :autoconf
    depends_on :automake
    depends_on :libtool
  end
  depends_on 'afflib' => :optional
  depends_on 'libewf' => :optional
  conflicts_with 'ffind',
    :because => "both install a 'ffind' executable."
  def install
    system "./bootstrap" if build.head?
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end
  |