homebrew-core/Formula/frag_find.rb
2016-02-24 21:12:35 +01:00

45 lines
1.5 KiB
Ruby

class FragFind < Formula
desc "Hash-based carver tool (formerly 'NPS Bloom Filter package')"
homepage "https://github.com/simsong/frag_find"
url "http://digitalcorpora.org/downloads/frag_find/frag_find-1.0.0.tar.gz"
sha256 "0ef28c18bbf80da78cf1c7dea3a75ca4741e600b38b7c2c71a015a794d9ab466"
revision 1
bottle do
cellar :any
sha256 "19f7e394d229a6935ce951fcd13346bc1ee902aac1e1bf2b1d84dff4e6839414" => :el_capitan
sha256 "8c05d6633002612e03edddc4ca9399c60483fbfda1566be809bc19164bc0b425" => :yosemite
sha256 "e077b8ad31f22e3d43b53ba88c2d0f812014b34a15d60c14002630fb24522925" => :mavericks
sha256 "039e86dd48ff0fbba870859d00ec2a0271184986fc760a1deb640550610afcac" => :mountain_lion
end
head do
url "https://github.com/simsong/frag_find.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
depends_on "openssl"
def install
if build.head?
# don't run ./configure without arguments
inreplace "bootstrap.sh", "./configure", ""
system "./bootstrap.sh"
end
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
libexec.install bin/"frag_find.jar"
end
test do
path = testpath/"test.raw"
system "dd", "if=/dev/zero", "of=#{path}", "bs=1", "count=0", "seek=512"
assert_match(/Total blocks of original file found: 1 \(100%\)/,
shell_output("#{bin}/frag_find #{path} #{path}"))
end
end