2011-03-10 05:11:03 +00:00
|
|
|
class Ddrescue < Formula
|
2014-06-13 17:07:09 +00:00
|
|
|
homepage "https://www.gnu.org/software/ddrescue/ddrescue.html"
|
2014-10-07 05:56:12 +00:00
|
|
|
url "http://ftpmirror.gnu.org/ddrescue/ddrescue-1.19.tar.lz"
|
|
|
|
mirror "https://ftp.gnu.org/gnu/ddrescue/ddrescue-1.19.tar.lz"
|
2015-04-12 18:26:16 +00:00
|
|
|
sha256 "ed8d0c9d9aac80a9110e9cb0d0a91a7390d3bf9f816b67a62ca4eb140f4747b8"
|
2009-09-01 04:42:03 +00:00
|
|
|
|
2014-10-07 06:07:03 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "e3a30bbbd40b51f4ec0d71f215406e0e511f5d04" => :mavericks
|
|
|
|
sha1 "9917eb5ba28f1acb4f02b52b9cab9cb8e7768dfc" => :mountain_lion
|
|
|
|
sha1 "6cca70194ffc701ab511665630db71cdd46425ae" => :lion
|
|
|
|
end
|
|
|
|
|
2009-09-01 04:42:03 +00:00
|
|
|
def install
|
2013-11-29 17:54:25 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
2012-05-15 18:47:30 +00:00
|
|
|
"CXX=#{ENV.cxx}"
|
2014-10-07 05:59:22 +00:00
|
|
|
system "make", "install"
|
2009-09-01 04:42:03 +00:00
|
|
|
end
|
2015-04-12 18:26:16 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system bin/"ddrescue", "--force", "--size=64Ki", "/dev/zero", "/dev/null"
|
|
|
|
end
|
|
|
|
|
2009-09-01 04:42:03 +00:00
|
|
|
end
|