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

class Gawk <Formula
  @url='http://ftp.gnu.org/gnu/gawk/gawk-3.1.7.tar.bz2'
  @homepage='http://www.gnu.org/software/gawk/'
  @md5='674cc5875714315c490b26293d36dfcf'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug"
    system "make"
    system "make install"
  end
end