blob: c98868fab261319b64ffb3c91735f8f6a05f834d (
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.94a.tar.gz'
  sha1 '4f6815d212ac6e1ed4eb2720f9b28963d1d0e99d'
  def install
    system "./configure", "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--datadir=#{share}/sgrep"
    system "make install"
  end
end
 |