655e4048c7
Closes Homebrew/homebrew#25240. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
14 lines
426 B
Ruby
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
|