diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/midnight-commander.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Library/Formula/midnight-commander.rb b/Library/Formula/midnight-commander.rb index cd12dfdac..c2864b433 100644 --- a/Library/Formula/midnight-commander.rb +++ b/Library/Formula/midnight-commander.rb @@ -1,7 +1,16 @@ require 'formula' +class MidnightCommanderDownloadStrategy < CurlDownloadStrategy + # midnight-commander.org uses a self-signed cert, which is + # silly and trips curl up + def _fetch + curl '-k', @url, '-o', @tarball_path + end +end + class MidnightCommander < Formula - url 'http://www.midnight-commander.org/downloads/mc-4.7.5.3.tar.bz2' + url 'http://www.midnight-commander.org/downloads/mc-4.7.5.3.tar.bz2', + :using => MidnightCommanderDownloadStrategy homepage 'http://www.midnight-commander.org/' sha256 '0875b4c745d771b65ab71d0a295f2e6e91297121411a82068e2879f39a7628b6' |
