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 "01c6ea7862d5b23ef49ce9c271e9cecf49c7ecd5372d9602b3ceb88b9171312b" => :high_sierra 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 def caveats <<-EOS Append the following to your #{shell_profile}: export LESSOPEN="|#{HOMEBREW_PREFIX}/bin/lesspipe.sh %s" LESS_ADVANCED_PREPROCESSOR=1 EOS end end