homebrew-core/Formula/mhash.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

13 lines
401 B
Ruby

require 'formula'
class Mhash < Formula
homepage 'http://mhash.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/mhash/mhash/0.9.9.9/mhash-0.9.9.9.tar.gz'
sha1 'c898de5ea60d9e0873a1b73caa031bb1b5797c03'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end