25fd57921f
Closes Homebrew/homebrew#21027. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
383 B
Ruby
13 lines
383 B
Ruby
require 'formula'
|
|
|
|
class Re2c < Formula
|
|
homepage 'http://re2c.org'
|
|
url 'http://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
|