homebrew-core/Formula/sleuthkit.rb
Mark A. Matienzo 9dc9d1dde6 sleuthkit: move head to github repository
Closes Homebrew/homebrew#8446.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-15 18:27:54 -06:00

23 lines
679 B
Ruby

require 'formula'
class Sleuthkit < Formula
head 'https://github.com/sleuthkit/sleuthkit.git'
url 'http://downloads.sourceforge.net/project/sleuthkit/sleuthkit/3.2.3/sleuthkit-3.2.3.tar.gz'
homepage 'http://www.sleuthkit.org/'
md5 '29465ebe32cfeb5f0cab83e4e93823c5'
depends_on 'afflib' => :optional
depends_on 'libewf' => :optional
def install
if ARGV.build_head?
system "glibtoolize"
system "aclocal"
system "automake", "--add-missing", "--copy"
system "autoconf"
end
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end