2009-10-20 12:41:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Lesspipe < Formula
|
|
|
|
homepage 'http://www-zeuthen.desy.de/~friebel/unix/lesspipe.html'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/lesspipe/lesspipe/1.82/lesspipe-1.82.tar.gz'
|
2013-02-14 04:36:48 +00:00
|
|
|
sha1 '61a7657b20b910ed8219c6b77467e601f9a89894'
|
2009-10-20 12:41:16 +00:00
|
|
|
|
2012-08-28 04:59:53 +00:00
|
|
|
option 'syntax-highlighting', 'Enable syntax highlighting'
|
2011-05-06 06:33:41 +00:00
|
|
|
|
2009-10-20 12:41:16 +00:00
|
|
|
def install
|
2012-08-28 04:59:53 +00:00
|
|
|
if build.include? 'syntax-highlighting'
|
2011-05-06 06:33:41 +00:00
|
|
|
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
|