homebrew-core/Formula/mawk.rb

17 lines
496 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Mawk < Formula
2009-12-21 14:27:31 +00:00
url 'http://invisible-island.net/datafiles/release/mawk.tar.gz'
homepage 'http://invisible-island.net/mawk/mawk.html'
md5 '447e7c322fa1e58141f5085bae87351f'
2009-12-21 14:27:31 +00:00
version '1.3.4'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-readline=/usr/lib",
"--mandir=#{man}"
system "make install"
end
end