homebrew-core/Formula/lesspipe.rb
Marc Abramowitz 14b37d4069 lesspipe 1.72
Closes Homebrew/homebrew#8642.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-11-17 12:33:49 -08:00

21 lines
576 B
Ruby

require 'formula'
class Lesspipe < Formula
homepage 'http://www-zeuthen.desy.de/~friebel/unix/lesspipe.html'
url 'http://www-zeuthen.desy.de/~friebel/unix/less/lesspipe-1.72.tar.gz'
md5 '0fdb9d4ab5dd570806e778b6815ea276'
def options
[['--syntax-highlighting', 'Enable syntax highlighting']]
end
def install
if ARGV.include? '--syntax-highlighting'
inreplace 'configure', %q{$ifsyntax = "\L$ifsyntax";}, %q{$ifsyntax = "\Ly";}
end
system "./configure", "--prefix=#{prefix}", "--default"
man1.mkpath
system "make install"
end
end