New Formula: sgrep
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
5efa2f26d1
commit
e3bcf18f14
1 changed files with 15 additions and 0 deletions
15
Formula/sgrep.rb
Normal file
15
Formula/sgrep.rb
Normal file
|
@ -0,0 +1,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
|
Loading…
Reference in a new issue