aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorFjölnir Ásgeirsson2012-05-26 18:04:13 +0900
committerAdam Vandenberg2012-06-28 22:16:46 -0700
commit2334a5feff226912a795540c0c6ed042e86f0119 (patch)
tree5ec68a8cc820c7207a03aed5ca6e6e7ee0fac9dc /Library/Formula
parent0ccbc36723b704e556245d48b179824d988317fc (diff)
downloadhomebrew-2334a5feff226912a795540c0c6ed042e86f0119.tar.bz2
Berkeley Yacc 20120526
Closes #12444. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/byacc.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/byacc.rb b/Library/Formula/byacc.rb
new file mode 100644
index 000000000..ef24e3825
--- /dev/null
+++ b/Library/Formula/byacc.rb
@@ -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