blob: f6d50b8385ff129f52f5a05f71ef58ccdc92814e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|