blob: 9feba4191bcc67135c9e62d3f1370d4b84e973b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require 'formula'
class Scalpel < Formula
  url 'http://www.digitalforensicssolutions.com/Scalpel/scalpel-2.0.tar.gz'
  homepage 'http://www.digitalforensicssolutions.com/Scalpel/'
  sha1 '4cc1164c75471c75f7dfa91c81ccef7eb15142f1'
  depends_on 'tre'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
    etc.install "scalpel.conf" => "scalpel.conf.sample"
  end
end
  |