Berkeley Yacc 20120526
Closes Homebrew/homebrew#12444. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
fa08a5ce1c
commit
3cc881d48a
1 changed files with 15 additions and 0 deletions
15
Formula/byacc.rb
Normal file
15
Formula/byacc.rb
Normal file
|
@ -0,0 +1,15 @@
|
|||
require 'formula'
|
||||
|
||||
class Byacc < Formula
|
||||
homepage 'http://invisible-island.net/byacc/byacc.html'
|
||||
url 'ftp://invisible-island.net/byacc/byacc-20120526.tgz'
|
||||
sha1 '69662091c2ad42e4048860b886adbf5bab5a53a6'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--program-prefix=b",
|
||||
"--prefix=#{prefix}",
|
||||
"--man=#{man}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue