48 lines
1.4 KiB
Ruby
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.3.tar.gz"
|
|
mirror "https://ftp.gnu.org/gnu/bison/bison-3.0.3.tar.gz"
|
|
sha1 "1fb1b831d53e2da3834e4e1eb2e14f93e9a9111d"
|
|
|
|
bottle do
|
|
sha1 "b0406db2d7126e9e978356751db6eba530bfbea9" => :yosemite
|
|
sha1 "eac748515a1c256913d6d2f07b7fcc8fa93d49ec" => :mavericks
|
|
sha1 "55091763e3688a564173074a145b3e5597bf0f21" => :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
|