2010-02-10 15:23:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Bap < Formula
|
2010-02-10 15:23:26 +00:00
|
|
|
head 'http://bap.googlecode.com/svn/trunk/'
|
|
|
|
homepage 'http://code.google.com/p/bap/'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
inreplace "scanner.l", "int yylineno", "//int yylineno"
|
|
|
|
system "make"
|
|
|
|
bin.install %w(bap aex prep)
|
|
|
|
doc.install "TODO"
|
|
|
|
end
|
|
|
|
end
|