c4d0c2fc53
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
385 B
Ruby
14 lines
385 B
Ruby
require 'formula'
|
|
|
|
class Bap <Formula
|
|
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
|