aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sleuthkit.rb
diff options
context:
space:
mode:
authorMark A. Matienzo2010-10-28 21:47:30 -0400
committerAdam Vandenberg2010-10-28 19:48:19 -0700
commit6beef1da5db6c01feb1e9568aca7d7cb403addff (patch)
tree7832fa2de0a4cb2a83ea8a3da7ff044432cb7597 /Library/Formula/sleuthkit.rb
parent17075c1b1bb17dd7d6be37883d25d0656b9ef47a (diff)
downloadhomebrew-6beef1da5db6c01feb1e9568aca7d7cb403addff.tar.bz2
Update formula: sleuthkit (add HEAD)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/sleuthkit.rb')
-rw-r--r--Library/Formula/sleuthkit.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/sleuthkit.rb b/Library/Formula/sleuthkit.rb
index 5d1c429eb..00349e7f4 100644
--- a/Library/Formula/sleuthkit.rb
+++ b/Library/Formula/sleuthkit.rb
@@ -1,6 +1,7 @@
require 'formula'
class Sleuthkit <Formula
+ head 'http://svn.sleuthkit.org/repos/sleuthkit/trunk', :using => :svn
url 'http://downloads.sourceforge.net/project/sleuthkit/sleuthkit/3.1.3/sleuthkit-3.1.3.tar.gz'
homepage 'http://www.sleuthkit.org/'
md5 'e1798bede2112ec4c5770151c3e32bfd'
@@ -9,6 +10,12 @@ class Sleuthkit <Formula
depends_on 'libewf' => :optional
def install
+ if ARGV.build_head
+ system "glibtoolize"
+ system "aclocal"
+ system "automake", "--add-missing", "--copy"
+ system "autoconf"
+ end
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"