frag_find: delete
This commit is contained in:
parent
6de1e2e0a4
commit
d6f027de90
1 changed files with 0 additions and 47 deletions
|
@ -1,47 +0,0 @@
|
|||
class FragFind < Formula
|
||||
desc "Hash-based carver tool (formerly 'NPS Bloom Filter package')"
|
||||
homepage "https://github.com/simsong/frag_find"
|
||||
url "https://digitalcorpora.org/downloads/frag_find/frag_find-1.0.0.tar.gz"
|
||||
sha256 "0ef28c18bbf80da78cf1c7dea3a75ca4741e600b38b7c2c71a015a794d9ab466"
|
||||
revision 1
|
||||
|
||||
bottle do
|
||||
cellar :any
|
||||
sha256 "85c7bd74304dfb268a15c91c2fcc6a713db6adf1faa0d144dae15f6c8e455aba" => :mojave
|
||||
sha256 "56cca9504c4a4b60e92ef870b7acc51df17f8648afd233d8bb7ff19a6211d0b1" => :high_sierra
|
||||
sha256 "3a1867eed1058a353c25c6820bd4a9391d5431ab569b04ecd651842105d34e05" => :sierra
|
||||
sha256 "19f7e394d229a6935ce951fcd13346bc1ee902aac1e1bf2b1d84dff4e6839414" => :el_capitan
|
||||
sha256 "8c05d6633002612e03edddc4ca9399c60483fbfda1566be809bc19164bc0b425" => :yosemite
|
||||
sha256 "e077b8ad31f22e3d43b53ba88c2d0f812014b34a15d60c14002630fb24522925" => :mavericks
|
||||
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
|
Loading…
Reference in a new issue