aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ddrescue.rb
blob: 795e463855ab58b28827cd24038b92626dd1dc70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Ddrescue < Formula
  homepage 'http://www.gnu.org/software/ddrescue/ddrescue.html'
  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
    system "./configure", "--prefix=#{prefix}",
                          "CXX=#{ENV.cxx}"
    system "make install"
  end
end