homebrew-core/Formula/ragel.rb
Josh Ballanco 0aa069c82a Ragel config wasn't using prefix
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-23 12:29:47 -07:00

12 lines
311 B
Ruby

require 'formula'
class Ragel <Formula
url 'http://www.complang.org/ragel/ragel-6.6.tar.gz'
homepage 'http://www.complang.org/ragel/'
md5 '5c4366369f4934adc02bd71dc1a4ee1f'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end