7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
13 lines
336 B
Ruby
13 lines
336 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
|