2012-05-26 09:04:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Byacc < Formula
|
|
|
|
homepage 'http://invisible-island.net/byacc/byacc.html'
|
2013-11-28 20:20:11 +00:00
|
|
|
url 'ftp://invisible-island.net/byacc/byacc-20130925.tgz'
|
|
|
|
sha1 '6f49b2c730a5ad9882f823f40dc617713f42fc73'
|
2012-05-26 09:04:13 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--program-prefix=b",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--man=#{man}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|