36 lines
1.3 KiB
Ruby
36 lines
1.3 KiB
Ruby
class Lesspipe < Formula
|
|
desc "Input filter for the pager less"
|
|
homepage "https://www-zeuthen.desy.de/~friebel/unix/lesspipe.html"
|
|
url "https://downloads.sourceforge.net/project/lesspipe/lesspipe/1.83/lesspipe-1.83.tar.gz"
|
|
sha256 "d616f0d51852e60fb0d0801eec9c31b10e0acc6fdfdc62ec46ef7bfd60ce675e"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f22864d81a8eb648fc4501665af743d285fcf0fa7c81edb21fd71f2593addedd" => :sierra
|
|
sha256 "f22864d81a8eb648fc4501665af743d285fcf0fa7c81edb21fd71f2593addedd" => :el_capitan
|
|
sha256 "f22864d81a8eb648fc4501665af743d285fcf0fa7c81edb21fd71f2593addedd" => :yosemite
|
|
end
|
|
|
|
option "with-syntax-highlighting", "Build with syntax highlighting"
|
|
|
|
deprecated_option "syntax-highlighting" => "with-syntax-highlighting"
|
|
|
|
def install
|
|
if build.with? "syntax-highlighting"
|
|
inreplace "configure", '$ifsyntax = "\L$ifsyntax";', '$ifsyntax = "\Ly";'
|
|
end
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--yes"
|
|
man1.mkpath
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
touch "file1.txt"
|
|
touch "file2.txt"
|
|
system "tar", "-cvzf", "homebrew.tar.gz", "file1.txt", "file2.txt"
|
|
|
|
assert File.exist?("homebrew.tar.gz")
|
|
assert_match /file2.txt/, shell_output("tar tvzf homebrew.tar.gz | #{bin}/tarcolor")
|
|
end
|
|
end
|