aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMark A. Matienzo2012-10-02 14:30:49 -0400
committerAdam Vandenberg2012-10-02 11:33:38 -0700
commit592a3bcb0d8f706c52bdcb5c4963ae6009416164 (patch)
treee516b980e6dfb41d924d2d10fc9c55c27637b669 /Library/Formula
parentf6caf3dc79907ba1afaf7f9bbc8cdae31c71ca51 (diff)
downloadhomebrew-592a3bcb0d8f706c52bdcb5c4963ae6009416164.tar.bz2
sleuthkit 4.0.0
Closes #15247. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sleuthkit.rb13
1 files changed, 3 insertions, 10 deletions
diff --git a/Library/Formula/sleuthkit.rb b/Library/Formula/sleuthkit.rb
index 990202248..084d62168 100644
--- a/Library/Formula/sleuthkit.rb
+++ b/Library/Formula/sleuthkit.rb
@@ -2,8 +2,8 @@ require 'formula'
class Sleuthkit < Formula
homepage 'http://www.sleuthkit.org/'
- url 'http://downloads.sourceforge.net/project/sleuthkit/sleuthkit/3.2.3/sleuthkit-3.2.3.tar.gz'
- sha1 '85d100ffde54f051916a4ea9452563ff85fad4ac'
+ url 'http://downloads.sourceforge.net/project/sleuthkit/sleuthkit/4.0.0/sleuthkit-4.0.0.tar.gz'
+ sha1 '271f96eb1d179466fd8307824183edfa9a95ad9f'
head 'https://github.com/sleuthkit/sleuthkit.git'
@@ -16,18 +16,11 @@ class Sleuthkit < Formula
depends_on 'afflib' => :optional
depends_on 'libewf' => :optional
- def patches
- # required for new-ish libewf releases (API change)
- # fixed in the upcoming sleuthkit 4.x
- if build.stable?
- "http://downloads.sourceforge.net/project/libewf/patches%20for%203rd%20party%20software/sleuthkit/tsk3.2.3-libewf.patch"
- end
- end
-
def install
system "./bootstrap" if build.head?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
+ system "make"
system "make install"
end
end