1d3a2a27f6
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
304 B
Ruby
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
|