28 lines
1.1 KiB
Ruby
28 lines
1.1 KiB
Ruby
class Dc3dd < Formula
|
|
desc "Patched GNU dd that is intended for forensic acquisition of data"
|
|
homepage "https://sourceforge.net/projects/dc3dd/"
|
|
url "https://downloads.sourceforge.net/project/dc3dd/dc3dd/7.1.0/dc3dd-7.1.614.tar.gz"
|
|
sha256 "f6fb4d921928e6354e9f8ff2a8415ebc42b129959996e1ab0d10899c11aac198"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "fe98660fe3815dc9618ec5c9fddae3393024a4b23d03d1e3ef8f2ed5c99846da" => :el_capitan
|
|
sha256 "fbf2891c99d330a38018ea002653ce54bda4661c6e47d8d9398133027c95e789" => :yosemite
|
|
sha256 "dc413cbaaf429d0304d2c678b154a411fd631ee6556c7784587c2547f14c6a1b" => :mavericks
|
|
end
|
|
|
|
def install
|
|
args = %W[--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--infodir=#{info}]
|
|
|
|
# Check for stpncpy is broken, and the replacement fails to compile
|
|
# on Lion and newer; see https://github.com/Homebrew/homebrew/issues/21510
|
|
args << "gl_cv_func_stpncpy=yes" if MacOS.version >= :lion
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
prefix.install %w[Options_Reference.txt Sample_Commands.txt]
|
|
end
|
|
end
|