homebrew-core/Formula/dc3dd.rb

59 lines
2.3 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.2.646/dc3dd%207.2.646/dc3dd-7.2.646.zip",
:using => :nounzip
sha256 "c4e325e5cbdae49e3855b0849ea62fed17d553428724745cea53fe6d91fd2b7f"
bottle do
sha256 "ea20a6b8c2bff1bcf2d43b528e77144ba37e610a91a772563b72acbf75259535" => :sierra
sha256 "21e646934e7c069a618a0b0e8b1db82b8982efe9cdc2863ce1ad4e5892cfcd81" => :el_capitan
sha256 "4490bf1b4ece003cce7a89fb0ab3e1aa570543ac2c8c08d76a76060ba4546daf" => :yosemite
end
depends_on "gettext"
resource "gettext-pm" do
url "https://cpan.metacpan.org/authors/id/P/PV/PVANDRY/gettext-1.07.tar.gz"
mirror "http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-1.07.tar.gz"
sha256 "909d47954697e7c04218f972915b787bd1244d75e3bd01620bc167d5bbc49c15"
end
def install
# Regular zip files created by 7-zip can upset /usr/bin/unzip by reporting a
# non-zero size for dirs; the workaround below avoids a p7zip dependency
# Reported 32 Oct 2016 https://sourceforge.net/p/dc3dd/bugs/14/
zip_file = cached_download.basename(".zip")
Utils.popen_read("unzip #{zip_file}.zip")
buildpath.install (buildpath/zip_file).children
ENV.prepend_create_path "PERL5LIB", buildpath/"gettext-pm/lib/perl5"
resource("gettext-pm").stage do
inreplace "Makefile.PL", "$libs = \"-lintl\"",
"$libs = \"-L/usr/local/opt/gettext/lib -lintl\""
system "perl", "Makefile.PL", "INSTALL_BASE=#{buildpath}/gettext-pm"
system "make"
system "make", "install"
end
chmod 0555, ["build-aux/install-sh", "configure"]
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
test do
system bin/"dc3dd", "--help"
end
end