homebrew-core/Formula/sgrep.rb
yanniks 655e4048c7 sgrep 1.94a
Closes Homebrew/homebrew#25240.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-15 20:49:01 +00:00

14 lines
426 B
Ruby

require 'formula'
class Sgrep < Formula
homepage 'http://www.cs.helsinki.fi/u/jjaakkol/sgrep.html'
url 'ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/sgrep-1.94a.tar.gz'
sha1 '4f6815d212ac6e1ed4eb2720f9b28963d1d0e99d'
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"--datadir=#{share}/sgrep"
system "make install"
end
end