348f13d3c9
Closes Homebrew/homebrew#9877. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
17 lines
457 B
Ruby
17 lines
457 B
Ruby
require 'formula'
|
|
|
|
class Scalpel < Formula
|
|
url 'http://www.digitalforensicssolutions.com/Scalpel/scalpel-2.0.tar.gz'
|
|
homepage 'http://www.digitalforensicssolutions.com/Scalpel/'
|
|
md5 'b0da813bf34941e79209d7fafe86a6e6'
|
|
depends_on 'tre'
|
|
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
etc.install "scalpel.conf" => "scalpel.conf.sample"
|
|
end
|
|
|
|
end
|