homebrew-core/Formula/bison.rb
2015-01-24 21:17:09 -05:00

48 lines
1.4 KiB
Ruby

class Bison < Formula
homepage "https://www.gnu.org/software/bison/"
url "https://ftpmirror.gnu.org/bison/bison-3.0.4.tar.gz"
mirror "https://ftp.gnu.org/gnu/bison/bison-3.0.4.tar.gz"
sha1 "ec1f2706a7cfedda06d29dc394b03e092a1e1b74"
bottle do
sha1 "4a2c74267f6adff751ed407b18ba5a7e21f756fa" => :yosemite
sha1 "d8d02a4fce3fcdcdb8369fd8865f98ca95d12348" => :mavericks
sha1 "77b214901733883a054619cc0075af60494d6fb8" => :mountain_lion
end
keg_only :provided_by_osx, "Some formulae require a newer version of bison."
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"test.y").write <<-EOS.undent
%{ #include <iostream>
using namespace std;
extern void yyerror (char *s);
extern int yylex ();
%}
%start prog
%%
prog: // empty
| prog expr '\\n' { cout << "pass"; exit(0); }
;
expr: '(' ')'
| '(' expr ')'
| expr expr
;
%%
char c;
void yyerror (char *s) { cout << "fail"; exit(0); }
int yylex () { cin.get(c); return c; }
int main() { yyparse(); }
EOS
system "#{bin}/bison", "test.y"
system ENV.cxx, "test.tab.c", "-o", "test"
assert_equal "pass", shell_output("echo \"((()(())))()\" | ./test")
assert_equal "fail", shell_output("echo \"())\" | ./test")
end
end