blob: e364f8169bad53c9b969466aa884292f8a0dfd1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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.92a.tar.gz'
sha1 '0a51843822e9d986f08ad9e4c5d0e7b260508956'
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"--datadir=#{share}/sgrep"
system "make install"
end
end
|