553db18582
Update to latest stable release, use HTTPS on homepage and mirror, change single quotes to double. Closes Homebrew/homebrew#30121. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
433 B
Ruby
14 lines
433 B
Ruby
require "formula"
|
|
|
|
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
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"CXX=#{ENV.cxx}"
|
|
system "make install"
|
|
end
|
|
end
|