2009-10-20 12:41:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Lesspipe < Formula
|
|
|
|
homepage 'http://www-zeuthen.desy.de/~friebel/unix/lesspipe.html'
|
2011-11-17 15:42:49 +00:00
|
|
|
url 'http://www-zeuthen.desy.de/~friebel/unix/less/lesspipe-1.72.tar.gz'
|
|
|
|
md5 '0fdb9d4ab5dd570806e778b6815ea276'
|
2009-10-20 12:41:16 +00:00
|
|
|
|
2011-05-06 06:33:41 +00:00
|
|
|
def options
|
|
|
|
[['--syntax-highlighting', 'Enable syntax highlighting']]
|
|
|
|
end
|
|
|
|
|
2009-10-20 12:41:16 +00:00
|
|
|
def install
|
2011-05-06 06:33:41 +00:00
|
|
|
if ARGV.include? '--syntax-highlighting'
|
|
|
|
inreplace 'configure', %q{$ifsyntax = "\L$ifsyntax";}, %q{$ifsyntax = "\Ly";}
|
|
|
|
end
|
|
|
|
|
2009-10-20 12:41:16 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--default"
|
|
|
|
man1.mkpath
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|