homebrew-core/Formula/ddrescue.rb

15 lines
427 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ddrescue < Formula
homepage 'http://www.gnu.org/software/ddrescue/ddrescue.html'
2013-11-29 17:54:25 +00:00
url 'http://ftpmirror.gnu.org/ddrescue/ddrescue-1.17.tar.lz'
mirror 'http://ftp.gnu.org/gnu/ddrescue/ddrescue-1.17.tar.lz'
sha1 '2d91b070fe629f713d53a97213165a8c568f5ffd'
def install
2013-11-29 17:54:25 +00:00
system "./configure", "--prefix=#{prefix}",
"CXX=#{ENV.cxx}"
system "make install"
end
end