2012-01-30 22:13:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Scalpel < Formula
|
|
|
|
url 'http://www.digitalforensicssolutions.com/Scalpel/scalpel-2.0.tar.gz'
|
|
|
|
homepage 'http://www.digitalforensicssolutions.com/Scalpel/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '4cc1164c75471c75f7dfa91c81ccef7eb15142f1'
|
2012-01-30 22:13:28 +00:00
|
|
|
depends_on 'tre'
|
|
|
|
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
etc.install "scalpel.conf" => "scalpel.conf.sample"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|