aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/byacc.rb
blob: 548a43e16bc136e837a7698849584db0ef6b2640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Byacc < Formula
  homepage 'http://invisible-island.net/byacc/byacc.html'
  url 'ftp://invisible-island.net/byacc/byacc-20130925.tgz'
  sha1 '6f49b2c730a5ad9882f823f40dc617713f42fc73'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--program-prefix=b",
                          "--prefix=#{prefix}",
                          "--man=#{man}"
    system "make install"
  end
end