blob: 14136d6688223673b231f83212fb37b21b229c00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Agrep <Formula
url 'ftp://ftp.cs.arizona.edu/agrep/agrep-2.04.tar.Z'
version '2.04'
homepage 'http://en.wikipedia.org/wiki/Agrep'
md5 'abc645404d3926a57c3f5e86a6e89ee9'
def install
inreplace "Makefile" do |s|
s.change_make_var! "CFLAGS", ENV.cflags
end
system "make"
bin.install "agrep"
man1.install "agrep.1"
end
end
|