homebrew-core/Formula/re2c.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
384 B
Ruby

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