homebrew-core/Formula/ddrescue.rb

15 lines
433 B
Ruby
Raw Normal View History

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