homebrew-core/Formula/agrep.rb
Jack Nagel 1d3a2a27f6 agrep: style cleanups
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-09 21:36:56 -06:00

13 lines
304 B
Ruby

require 'formula'
class Agrep < Formula
homepage 'http://en.wikipedia.org/wiki/Agrep'
url 'ftp://ftp.cs.arizona.edu/agrep/agrep-2.04.tar.Z'
md5 'abc645404d3926a57c3f5e86a6e89ee9'
def install
system "make", "CFLAGS=#{ENV.cflags}"
bin.install "agrep"
man1.install "agrep.1"
end
end