blob: 1d59a48a16baeb0f7a18940a607b7d6ccb824baf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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
|