fa3d89a7c0
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
394 B
Ruby
13 lines
394 B
Ruby
require 'formula'
|
|
|
|
class Ddrescue < Formula
|
|
url 'http://ftpmirror.gnu.org/ddrescue/ddrescue-1.14.tar.gz'
|
|
homepage 'http://www.gnu.org/software/ddrescue/ddrescue.html'
|
|
md5 'd6f6cc63df9ad352bc6e43b65c975af5'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking",
|
|
"CXX=#{ENV['CXX']}"
|
|
system "make install"
|
|
end
|
|
end
|