aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sgrep.rb
blob: b2b4aeae86fc73926b12c457a038c07d97df0025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Sgrep <Formula
  url 'ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/sgrep-1.92a.tar.gz'
  homepage 'http://www.cs.helsinki.fi/u/jjaakkol/sgrep.html'
  md5 '99eb1ed515648f653fc7be45e0896378'

  def install
    system "./configure",
      "--prefix=#{prefix}",
      "--mandir=#{man}",
      "--datadir=#{share}/sgrep"
    system "make install"
  end
end