aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/scalpel.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/scalpel.rb b/Library/Formula/scalpel.rb
new file mode 100644
index 000000000..003e9fafc
--- /dev/null
+++ b/Library/Formula/scalpel.rb
@@ -0,0 +1,17 @@
+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