aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMatt Dickoff2012-01-30 17:13:28 -0500
committerCharlie Sharpsteen2012-01-30 15:55:25 -0800
commit8af9e2588b0e4e3ee754da5118fc9eb6f658c07c (patch)
tree9b85d072e6a4b7a1352b5ec0d4802d398c351e84 /Library
parentfb728a8af907bfd1fdd53ab90ac4ae4ea7c781ab (diff)
downloadhomebrew-8af9e2588b0e4e3ee754da5118fc9eb6f658c07c.tar.bz2
New Formula: Scalpel
Closes #9877. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
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