class Cscope < Formula desc "Tool for browsing source code" homepage "http://cscope.sourceforge.net/" url "https://downloads.sourceforge.net/project/cscope/cscope/15.8b/cscope-15.8b.tar.gz" sha256 "4889d091f05aa0845384b1e4965aa31d2b20911fb2c001b2cdcffbcb7212d3af" bottle do cellar :any_skip_relocation sha256 "97930be35cbcd08980651597acf931adbb50a80df10960d6564497f19d9c8032" => :el_capitan sha256 "71d86771790165c777341e4457dd193008cfb2fb24628a138cb45fec61e6b42d" => :yosemite sha256 "cb2f63522d072307cacf63e8eabf4c284f2e8c1b2ff8c6de3aeb6fb8759a1212" => :mavericks end def install system "./configure", "--prefix=#{prefix}", "--mandir=#{man}" system "make", "install" end test do (testpath/"test.c").write <<-EOS.undent #include #include void func() { printf("Hello World!"); } int main() { func(); return 0; } EOS (testpath/"cscope.files").write "./test.c\n" system "#{bin}/cscope", "-b", "-k" assert_match /test\.c.*func/, shell_output("#{bin}/cscope -L1func") end end