homebrew-core/Formula/ddrescue.rb
Ben Alpert 22aec56902 GNU Ddrescue formula
GNU ddrescue is a data recovery tool. It copies data from one file or block
device (hard disc, cdrom, etc) to another, trying hard to rescue data in case
of read errors.
2009-09-01 11:15:36 +01:00

12 lines
362 B
Ruby

require 'brewkit'
class Ddrescue <Formula
@url='http://ftp.gnu.org/gnu/ddrescue/ddrescue-1.11.tar.gz'
@homepage='http://www.gnu.org/software/ddrescue/ddrescue.html'
@md5='7146046bb1851351d1337bb1f5b4e903'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end